summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-04-16 23:30:08 -0400
committerKyle Meyer <kyle@kyleam.com>2020-04-16 23:54:15 -0400
commit1cd8435c566189ca3dfe0615a1b7d4ccb0357624 (patch)
tree0c8ca21df19a0c43c1bb5ae8454c9d4e91b6bd24 /init.el
parentb708f92f3e7e498aff8f57fc97d0d38606e9c822 (diff)
downloademacs.d-1cd8435c566189ca3dfe0615a1b7d4ccb0357624.tar.gz
km-magit: Change name and default suffix of branch backup command
I've been using "__vN" to record published versions of branches and "__cpN" for making "check points" of a branch when I'm in a state that I might want to look back on or reset to (e.g., because I'm going to do an involved, multi-step rewrite). I tend to use "__cp" a lot more, so make it the default.
Diffstat (limited to 'init.el')
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el
index e68ab8a..b8fb980 100644
--- a/init.el
+++ b/init.el
@@ -1177,7 +1177,7 @@
'("d" "Copy branch" km/magit-branch-copy))
(transient-append-suffix 'magit-branch "r"
- '("s" "Backup current branch" km/magit-branch-backup-current))
+ '("s" "Backup current branch" km/magit-branch-checkpoint))
(transient-append-suffix 'magit-branch "c"
'("m" "Checkout master" km/magit-checkout-master)))