From: Joey Hess Date: Tue, 27 Sep 2011 22:02:50 +0000 (-0400) Subject: bzr record --local for checkout X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/b9b507684aed7e55b8472652857ae39644288020?ds=sidebyside;hp=--cc bzr record --local for checkout --- b9b507684aed7e55b8472652857ae39644288020 diff --git a/mr b/mr index abfa2e5..340489c 100755 --- a/mr +++ b/mr @@ -1739,7 +1739,12 @@ darcs_commit = darcs record -a -m "$@" && darcs push -a fossil_commit = fossil commit "$@" git_record = git commit -a "$@" -bzr_record = bzr commit "$@" +bzr_record = + if is_bzr_checkout; then + bzr commit --local "$@" + else + bzr commit "$@" + fi hg_record = hg commit -m "$@" darcs_record = darcs record -a -m "$@" fossil_record = fossil commit "$@"