17 lines
382 B
Org Mode
17 lines
382 B
Org Mode
|
#+TITLE: Magit
|
||
|
|
||
|
#+BEGIN_SRC emacs-lisp
|
||
|
(require 'magit)
|
||
|
#+END_SRC
|
||
|
|
||
|
Magit is a very nice interface to Git for Emacs. It allows you to do
|
||
|
just about anything with Git without leaving the comfort of your Emacs
|
||
|
session.
|
||
|
|
||
|
Show refined diffs in magit. This makes it much easier to see /what/
|
||
|
has changed on a line.
|
||
|
|
||
|
#+BEGIN_SRC emacs-lisp
|
||
|
(setq magit-diff-refine-hunk 'all)
|
||
|
#+END_SRC
|