* Identifying the last push to a reposiotry
@ 2010-03-02 21:07 jateeq
2010-03-02 21:13 ` Chris Packham
0 siblings, 1 reply; 2+ messages in thread
From: jateeq @ 2010-03-02 21:07 UTC (permalink / raw)
To: git
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
--
View this message in context: http://old.nabble.com/Identifying-the-last-push-to-a-reposiotry-tp27761186p27761186.html
Sent from the git mailing list archive at Nabble.com.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Identifying the last push to a reposiotry
2010-03-02 21:07 Identifying the last push to a reposiotry jateeq
@ 2010-03-02 21:13 ` Chris Packham
0 siblings, 0 replies; 2+ messages in thread
From: Chris Packham @ 2010-03-02 21:13 UTC (permalink / raw)
To: jateeq; +Cc: git
On Tue, Mar 2, 2010 at 1:07 PM, jateeq <jawad_atiq@hotmail.com> 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.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-03-02 21:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-02 21:07 Identifying the last push to a reposiotry jateeq
2010-03-02 21:13 ` Chris Packham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).