diff options
author | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-08-26 14:42:27 +0200 |
---|---|---|
committer | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-08-26 14:42:27 +0200 |
commit | b4566c7923c16f6fcb858843ab62d6134f315fb0 (patch) | |
tree | c20aeeef17fb21a57f34551fd34544e44e3bc2fa /Makefile | |
parent | 9f9bc1e7326d2e0e3ee88fd35f18deb27c407151 (diff) |
confluence.its.umu.se added
jira.its.umu.se added
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -145,7 +145,7 @@ tidy: commit: tidy test @echo ; echo -n "Run 'git commit -a'? [Y/n/s] " ; read x ; case $$x in "Y"|"y"|"") git commit -a ;; s) ;; *) exit 1 ;; esac @git status -u - @echo "Checking for untracked files in swamid-2.0/" ; if git status --porcelain --ignored | awk '{print $$2}' | grep "^swamid-2.0/" | sed 's/^/ /' | grep . ; then echo "Untracked files in swamid-2.0/, aborting" ; exit 1 ; fi + @echo "Checking for not committed files in swamid-2.0/" ; if git status --porcelain --ignored | awk '{print $$2}' | grep "^swamid-2.0/" | sed 's/^/ /' | grep . ; then echo "Not committed files in swamid-2.0/, aborting" ; exit 1 ; fi @echo ; echo -n "Run 'git push'? [Y/n] " ; read x ; case $$x in "Y"|"y"|"") ;; *) exit 1 ;; esac @git push |