Skip to content

Commit

Permalink
Merge branch 'tkf/fix-manual-merge'
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma committed Jun 16, 2012
2 parents 46662c9 + 75d2da9 commit d3c62bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion magit-key-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@
(switches
("-ff" "Fast-forward only" "--ff-only")
("-nf" "No fast-forward" "--no-ff")
("-nc" "No commit" "--no-commit")
("-sq" "Squash" "--squash"))
(arguments
("-st" "Strategy" "--strategy=" read-from-minibuffer)))
Expand Down
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 d3c62bd

Please sign in to comment.