diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-03-10 00:15:37 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-03-10 00:15:37 -0400 |
commit | 53186316fb5608cb1d21bfef40650453ab3e4d62 (patch) | |
tree | 0f3395fb081d019cf325a4f07c7c1f770129efec | |
parent | c0f30f83c7e7cce7bec66c05070a963c0ebffcd4 (diff) | |
download | emacs.d-53186316fb5608cb1d21bfef40650453ab3e4d62.tar.gz |
Remove km/magit-log-all-branches action
A similar action was added to Magit in
a471cfb94c762a714570a86a75004770fb6214c3.
-rw-r--r-- | lisp/init-git.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el index 59d52b1..d6b8344 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -99,11 +99,6 @@ without requiring confirmation. (interactive (list (magit-read-remote "Remote") (magit-push-arguments))) (magit-run-git-async "push" "-v" args remote "HEAD")) -(defun km/magit-log-all-branches (&optional args files) - (interactive (magit-log-read-args nil t)) - (add-to-list 'args "--all") - (magit-log-head args files)) - (defun km/magit-checkout-local-tracking (remote-branch) "Create and checkout a local tracking branch for REMOTE-BRANCH. \n(git checkout -t REMOTE-BRANCH\)" @@ -266,8 +261,6 @@ the commit buffer. And no dinging." ?h "Push HEAD" 'km/magit-push-head) (magit-define-popup-action 'magit-merge-popup ?u "Merge upstream" 'km/magit-ff-merge-upstream) - (magit-define-popup-action 'magit-log-popup - ?a "All branches" 'km/magit-log-all-branches) (magit-define-popup-action 'magit-branch-popup ?t "Local tracking" 'km/magit-checkout-local-tracking) (magit-define-popup-action 'magit-branch-popup |