Skip to content

Commit

Permalink
Fix: switches for merge was ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Jun 4, 2012
1 parent 46662c9 commit 62e3089
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion magit.el
Original file line number Diff line number Diff line change
Expand Up @@ -3646,7 +3646,10 @@ user input."
\('git merge REVISION')."
(interactive (list (magit-read-rev "Merge" (magit-guess-branch))))
(when revision
(magit-run-git "merge" "--no-commit" (magit-rev-to-git revision))
(apply 'magit-run-git
"merge" "--no-commit"
(magit-rev-to-git revision)
magit-custom-options)
(when (file-exists-p ".git/MERGE_MSG")
(magit-log-edit))))

Expand Down

0 comments on commit 62e3089

Please sign in to comment.