Renamed "unmerged" to "unpulled".

This commit is contained in:
Marius Vollmer 2008-09-07 16:50:30 +03:00
parent 8c09f66694
commit 72fa30a698

View file

@ -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)