You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Generate an animated video (.mp4) instead of a static image using the `--animate` flag (note: significant performance slowdown, it is recommended to use `--low-quality` to speed up testing and remove when ready to generate presentation-quality video)
31
+
- Color commits by parameter, such as author the `--color-by=author` option
31
32
- Choose between dark mode (default) and light mode
32
33
- Specify output formats of either jpg, png, mp4, or webm
33
34
- Combine with bundled command [git-dummy](https://github.com/initialcommit-com/git-dummy) to generate a dummy Git repo and then simulate operations on it
Optional: On MacOS / Linux / or GitBash in Windows, create an alias for the long docker command so your can run it as a normal `git-sim` command. To do so add the following line to your `.bashrc` or equivalent, then restart your terminal:
446
456
447
457
```bash
448
-
git-sim() { docker run --rm -v $(pwd):/usr/src/git-sim git-sim "$@" }
458
+
git-sim() { docker run --rm -v $(pwd):/usr/src/git-sim git-sim "$@"; }
449
459
```
450
460
451
461
This will enable you to run git-sim subcommands as [described above](#commands).
0 commit comments