Renamed "unmerged" to "unpulled".
This commit is contained in:
parent
8c09f66694
commit
72fa30a698
1 changed files with 4 additions and 4 deletions
8
magit.el
8
magit.el
|
@ -1062,9 +1062,9 @@ Please see the manual for a complete description of Magit.
|
|||
(or magit-marked-commit
|
||||
(error "Not commit marked")))
|
||||
|
||||
(defun magit-insert-unmerged-commits (remote branch)
|
||||
(magit-insert-section 'unmerged
|
||||
"Unmerged commits:" 'magit-wash-log
|
||||
(defun magit-insert-unpulled-commits (remote branch)
|
||||
(magit-insert-section 'unpulled
|
||||
"Unpulled commits:" 'magit-wash-log
|
||||
nil
|
||||
"git" "log" "--graph" "--pretty=oneline"
|
||||
(format "HEAD..%s/%s" remote branch)))
|
||||
|
@ -1114,7 +1114,7 @@ Please see the manual for a complete description of Magit.
|
|||
(if staged
|
||||
(magit-insert-staged-changes)))
|
||||
(when remote
|
||||
(magit-insert-unmerged-commits remote branch)
|
||||
(magit-insert-unpulled-commits remote branch)
|
||||
(magit-insert-unpushed-commits remote branch)))))
|
||||
(magit-goto-line old-line)
|
||||
(when (bobp)
|
||||
|
|
Loading…
Reference in a new issue