* see commit messages on git pull @ 2009-02-04 11:45 Thomas Koch 2009-02-04 12:39 ` Santi Béjar 2009-02-04 12:57 ` Bernt Hansen 0 siblings, 2 replies; 3+ messages in thread From: Thomas Koch @ 2009-02-04 11:45 UTC (permalink / raw) To: git I'd like to see the commit messages of the fetched commits, when I do git pull. Is that possible? It would also be fine to have sth. like git log --since-last-pull ? Best regards, -- Thomas Koch, http://www.koch.ro YMC AG, http://www.ymc.ch ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: see commit messages on git pull 2009-02-04 11:45 see commit messages on git pull Thomas Koch @ 2009-02-04 12:39 ` Santi Béjar 2009-02-04 12:57 ` Bernt Hansen 1 sibling, 0 replies; 3+ messages in thread From: Santi Béjar @ 2009-02-04 12:39 UTC (permalink / raw) To: Thomas Koch; +Cc: git 2009/2/4 Thomas Koch <thomas@koch.ro>: > I'd like to see the commit messages of the fetched commits, when I do > git pull. Is that possible? > > It would also be fine to have sth. like git log --since-last-pull ? I have this alias: alias.last=log @{1}.. --decorate --reverse --stat -C --no-merges It uses the reflog to show the commits between the old HEAD (@{1}) and the current HEAD. You can also specify the branch that you want to see with branch@{1}..branch@{0}. HTH, Santi ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: see commit messages on git pull 2009-02-04 11:45 see commit messages on git pull Thomas Koch 2009-02-04 12:39 ` Santi Béjar @ 2009-02-04 12:57 ` Bernt Hansen 1 sibling, 0 replies; 3+ messages in thread From: Bernt Hansen @ 2009-02-04 12:57 UTC (permalink / raw) To: Thomas Koch; +Cc: git Thomas Koch <thomas@koch.ro> writes: > I'd like to see the commit messages of the fetched commits, when I do > git pull. Is that possible? > > It would also be fine to have sth. like git log --since-last-pull ? git log ORIG_HEAD.. after the pull should do what you want. -Bernt ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-04 12:59 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-02-04 11:45 see commit messages on git pull Thomas Koch 2009-02-04 12:39 ` Santi Béjar 2009-02-04 12:57 ` Bernt Hansen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox