From b55f28eeba556ad5a3ec313a93af17f6f8c5a7e0 Mon Sep 17 00:00:00 2001 From: Michiel Missotten Date: Wed, 19 Feb 2014 12:20:09 +0100 Subject: [PATCH] Disable Travis build on temporary commit. When pushing a commit, with the `gwip` command, it should not be build. --- plugins/git/git.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 1285a3247..fcc92e21a 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -147,8 +147,8 @@ function work_in_progress() { fi } # these alias commit and uncomit wip branches -alias gwip='git add -A; git ls-files --deleted -z | xargs -0 git rm; git commit -m "--wip--"' -alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1' +alias gwip='git add -A; git ls-files --deleted -z | xargs -0 git rm; git commit -m "--wip-- [skip ci]"' +alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\- \[skip ci\]" && git reset HEAD~1' # these alias ignore changes to file alias gignore='git update-index --assume-unchanged'