summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-08-27 00:36:14 -0400
committerKyle Meyer <kyle@kyleam.com>2014-08-27 00:36:14 -0400
commitc4c800f2bd14f895a2da5ab8d3cdd653b15dd26c (patch)
tree1651165dc5e3a7c842866c5c4de7fd5b60d251e3 /lisp
parent59510d2cb92f8ab8da3115342d52f03869722f4d (diff)
downloademacs.d-c4c800f2bd14f895a2da5ab8d3cdd653b15dd26c.tar.gz
Remove '--track' from magit-branch-popup-defaults
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-git.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el
index deb3720..7148b19 100644
--- a/lisp/init-git.el
+++ b/lisp/init-git.el
@@ -76,7 +76,10 @@ Useful for non-source code repos (e.g., Org mode note files)."
(magit-define-popup-action 'magit-branch-popup
?t "Local tracking" 'km/magit-checkout-local-tracking)
(magit-define-popup-action 'magit-branch-popup
- ?s "Backup current branch" 'km/magit-backup-branch))
+ ?s "Backup current branch" 'km/magit-backup-branch)
+
+ (setq magit-branch-popup-defaults
+ (delete "--track" magit-branch-popup-defaults)))
(define-key ctl-x-4-map "g" 'magit-find-file-other-window)