Actually pass the branch to git-merge...
This commit is contained in:
parent
7dce8dc86d
commit
feb8dee1bc
1 changed files with 2 additions and 2 deletions
4
mgit.el
4
mgit.el
|
@ -368,11 +368,11 @@
|
|||
|
||||
(defun mgit-manual-merge (branch)
|
||||
(interactive (list (mgit-read-other-branch "Manually merge from branch: ")))
|
||||
(mgit-run "git" "merge" "--no-ff" "--no-commit"))
|
||||
(mgit-run "git" "merge" "--no-ff" "--no-commit" branch))
|
||||
|
||||
(defun mgit-automatic-merge (branch)
|
||||
(interactive (list (mgit-read-other-branch "Merge from branch: ")))
|
||||
(mgit-run "git" "merge"))
|
||||
(mgit-run "git" "merge" branch))
|
||||
|
||||
;;; Push and pull
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue