From b9b507684aed7e55b8472652857ae39644288020 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 27 Sep 2011 18:02:50 -0400 Subject: [PATCH] bzr record --local for checkout --- mr | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 "$@" -- 2.39.5