diff options
author | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-07-02 15:50:10 +0200 |
---|---|---|
committer | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-07-02 15:50:10 +0200 |
commit | ad9cb5ac7e1a7b4807cdc47b8d741615dc2aec2b (patch) | |
tree | 3b8adb381a68ee13e481f1322408de295603a3fa /Makefile | |
parent | b5900214be5e15fc5b839b39dcf710b46088e697 (diff) |
run git status -u after commit, before push
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -145,6 +145,7 @@ tidy: commit: tidy test @echo ; echo -n "Run 'git commit -a'? [Y/n] " ; read x ; case $$x in "Y"|"y"|"") ;; *) exit 1 ;; esac @git commit -a + @git status -u @echo ; echo -n "Run 'git push'? [Y/n] " ; read x ; case $$x in "Y"|"y"|"") ;; *) exit 1 ;; esac @git push |