mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
26 lines
536 B
Markdown
26 lines
536 B
Markdown
# 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:
|
|
|
|
```bash
|
|
gitPreAutoStatusCommands=(
|
|
'add'
|
|
'rm'
|
|
'reset'
|
|
'commit'
|
|
'checkout'
|
|
)
|
|
```
|
|
|
|
You can adjust this list by setting this var in your **.zshrc** after
|
|
`plugins=(...)` initialization.
|
|
|
|
### Maintainers
|
|
|
|
[@oshybystyi](https://github.com/oshybystyi/)
|