diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2014-07-05 23:16:51 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2014-07-05 23:16:51 (GMT) |
| commit | 4b59e24822a44d1ce1df091546a251a5bb64d21b (patch) | |
| tree | 83bd06fd067f7d5dd3b0eb26a533e35430210650 | |
| parent | 0ecc73c6b9996e2235d43be0d44288fe7aecc9ec (diff) | |
| download | dotemacs-4b59e24822a44d1ce1df091546a251a5bb64d21b.zip dotemacs-4b59e24822a44d1ce1df091546a251a5bb64d21b.tar.gz dotemacs-4b59e24822a44d1ce1df091546a251a5bb64d21b.tar.bz2 | |
More ways to look at git history
| -rw-r--r-- | ravi-init-vc.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ravi-init-vc.el b/ravi-init-vc.el index 1dd0952..e4b273e 100644 --- a/ravi-init-vc.el +++ b/ravi-init-vc.el @@ -26,7 +26,8 @@ ;; Git (use-package magit - :bind ("<M-f3>" . magit-status) + :bind (("<M-f3>" . magit-status) + ("C-x v F" . magit-file-log)) :config (progn (setq-default @@ -54,6 +55,7 @@ (diminish 'magit-wip-save-mode) ) ) + ;(after-load 'magit-key-mode ; (require 'magit-svn)) @@ -140,6 +142,12 @@ :ensure t :bind ("C-x v p" . git-messenger:popup-message) ) +(use-package git-timemachine + :ensure t + :bind ("C-x v t" . git-timemachine) + ) +(use-package magit-blame + :bind (("C-x v B" . magit-blame-mode))) ;; Stolen almost entirely from Fuco (Matus Goljer) (use-package ediff |
