X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/cdb465e61f783be39b53f818636e907a47585096..2b99538928d4c2b2021e8f3bf0de4f801475288a:/mr diff --git a/mr b/mr index 3dbd7e9..84f1a58 100755 --- a/mr +++ b/mr @@ -973,7 +973,7 @@ update = elif [ -d "$MR_REPO"/.hg ]; then hg pull "$@" && hg update "$@" elif [ -d "$MR_REPO"/_darcs ]; then - darcs pull "$@" + darcs pull -a "$@" else error "unknown repo type" fi @@ -1005,7 +1005,7 @@ commit = elif [ -d "$MR_REPO"/.hg ]; then hg commit -m "$@" && hg push elif [ -d "$MR_REPO"/_darcs ]; then - darcs commit -m "$@" && darcs push + darcs commit -a -m "$@" && darcs push -a else error "unknown repo type" fi @@ -1101,3 +1101,5 @@ ed = echo "A horse is a horse, of course, of course.." T = echo "I pity the fool." right = echo "Not found." #}}} + +# vim:sw=8:sts=0:ts=8:noet