From: Joey Hess Date: Thu, 11 Oct 2007 05:43:16 +0000 (-0400) Subject: fix pushing (again..) X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/29a4b08866ce803b123694f52dedf73a7614b9df fix pushing (again..) --- diff --git a/mr b/mr index 8d90af3..8fa688b 100755 --- a/mr +++ b/mr @@ -376,7 +376,7 @@ commit = \ if [ -d .svn ]; then \ svn commit "$@"; \ elif [ -d .git ]; then \ - git commit -a "$@" && git push --all \ + git commit -a "$@" && git push --all; \ else \ echo "mr commit: unknown repo type"; \ exit 1; \