Skip to content

Commit

Permalink
git.plugin.zsh: Don't run Git hooks when making a WIP commit (ohmyzsh…
Browse files Browse the repository at this point in the history
…#4751)

When making a WIP commit, we generally just want to save the state of the
current branch temporarily, maybe because we want to push our work for backup
purposes, or change branch to work on something else. Therefore, it's generally
undesirable to run Git hooks, which might do things like run linters, because
we probably don't care if our WIP has lint errors.
  • Loading branch information
allanlewis authored and aaronbieber committed Nov 4, 2016
1 parent 3673387 commit ac0b986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/git/git.plugin.zsh
Expand Up @@ -236,4 +236,4 @@ alias gupv='git pull --rebase -v'
alias glum='git pull upstream master'

alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit -m "--wip--"'
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify -m "--wip--"'

0 comments on commit ac0b986

Please sign in to comment.