ohmyzsh/plugins/git-auto-status
2015-05-15 23:40:10 +03:00
..
git-auto-status.plugin.zsh Added new plugin git-auto-status to automatically run git status command after bunch of commands like git commit 2015-05-15 23:40:10 +03:00
README.md Added new plugin git-auto-status to automatically run git status command after bunch of commands like git commit 2015-05-15 23:40:10 +03:00

Git auto status

If you found yourself constantly typing git status after bunch of commands like git commit and you want to avoid that, than this plugin is for you.

Tuning

The default list of command that git status is automatically running after is next:

gitPreAutoStatusCommands=(
    'add'
    'rm'
    'reset'
    'commit'
    'checkout'
)

You can adjust this list by setting this var in your .zshrc after plugins=(...) initialization.

Maintainers

@oshybystyi