X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/c31d2ce101d2be10f6a4b47e7bee0dd6875d71aa..c26daa63f0f1e5cdddb85b311f006de41b4525f0:/mr?ds=sidebyside diff --git a/mr b/mr index 2a43906..e1c8a06 100755 --- a/mr +++ b/mr @@ -334,7 +334,7 @@ update = \ elif [ -d .git ]; then \ git pull origin master; \ else \ - echo "mr update: unknown RCS"; \ + echo "mr update: unknown repo type"; \ exit 1; \ fi status = \ @@ -343,7 +343,7 @@ status = \ elif [ -d .git ]; then \ git status || true; \ else \ - echo "mr status: unknown RCS"; \ + echo "mr status: unknown repo type"; \ exit 1; \ fi commit = \ @@ -351,7 +351,8 @@ commit = \ svn commit "$@"; \ elif [ -d .git ]; then \ git commit -a "$@"; \ + git push --all; \ else \ - echo "mr commit: unknown RCS"; \ + echo "mr commit: unknown repo type"; \ exit 1; \ fi