This function will return true
or false
depending on if it finds out your repo
is dirty or not.
git-is-clean "path/to/repo" || echo "path/to/repo is dirty!"
In this example, if path/to/repo
is dirty it will echo
path/to/repo is dirty!
git
If you use https://github.com/aubreypwd/zsh-plugin-require we will try and install dependancies automatically.
Using antigen:
antigen bundle aubreypwd/[email protected]
Install the package on main
:
antigen bundle ssh://[email protected]/aubreypwd/zsh-plugin-git-is-clean
...and contribute upstream by working in $HOME/.antigen/bundles/aubreypwd/zsh-plugin-git-is-clean
.
###
# Watch repositories.
##
function __git-is-clean {
git-is-clean "$1" || ( echo "🚨 $1 is dirty" && tput bel )
}
__git-is-clean "$HOME/Repos/github.com/aubreypwd/iTerm2"
__git-is-clean "$HOME/Repos/github.com/aubreypwd/Alfred.alfredpreferences"
__git-is-clean "$HOME/Repos/github.com/aubreypwd/subl-snippets"