branch: elpa/magit commit 9cd7f530cd3ba0ad92ca713e7e2ed41107516ca7 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
magit-git-global-arguments: Add diff.noPrefix=false Closes #5340. --- lisp/magit-git.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/magit-git.el b/lisp/magit-git.el index 334d2550a5..19f02f9a4b 100644 --- a/lisp/magit-git.el +++ b/lisp/magit-git.el @@ -150,6 +150,7 @@ option." "-c" "log.showSignature=false" "-c" "color.ui=false" "-c" "color.diff=false" + "-c" "diff.noPrefix=false" ,@(and (eq system-type 'windows-nt) (list "-c" "i18n.logOutputEncoding=UTF-8"))) "Global Git arguments. @@ -165,7 +166,7 @@ anything that is part of the default value, unless you really know what you are doing. And think very hard before adding something; it will be used every time Magit runs Git for any purpose." - :package-version '(magit . "2.9.0") + :package-version '(magit . "4.3.2") :group 'magit-commands :group 'magit-process :type '(repeat string))