From e6ba8fdf3100334a44c96daf0d428a8feb825d52 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 11 Aug 2008 19:17:47 +0300 Subject: [PATCH] Show combined diffs with git-log. * magit.el (magit-show-commit): Add "--cc" to git-log invocation. --- magit.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/magit.el b/magit.el index 073755dd..6d772359 100644 --- a/magit.el +++ b/magit.el @@ -767,7 +767,8 @@ the current line into your working tree. (let ((inhibit-read-only t)) (erase-buffer) (magit-insert-section 'commit nil 'magit-wash-diff - "git" "log" "--max-count=1" "-p" commit))))) + "git" "log" "--max-count=1" "--cc" "-p" + commit))))) (defun magit-quit () (interactive)