On Tue, Mar 2, 2010 at 1:07 PM, jateeq <jawad_atiq@xxxxxxxxxxx> wrote: > > Hello, > > I am trying to list all the modifications to the clone of a repository since > the clone was last pushed to its original. Is there a way to identify the > commit id of the HEAD(of the clone) when this last push was carried out? > > Thanks, > Jawad > -- Something like git log origin/master..HEAD Getting more fancy you can do a 'git fetch' first and then you are able to see what has been pushed to the remote but not pulled locally as well. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html