From: Jeff King <peff@peff.net>
To: Sylvain Rabot <sylvain@abstraction.fr>
Cc: Bryan Richardson <btricha@gmail.com>, git@vger.kernel.org
Subject: Re: See commits on remote repository
Date: Wed, 28 Apr 2010 21:49:43 -0400 [thread overview]
Message-ID: <20100429014943.GA4269@coredump.intra.peff.net> (raw)
In-Reply-To: <1272495295.3021.84.camel@kheops>
On Thu, Apr 29, 2010 at 12:54:55AM +0200, Sylvain Rabot wrote:
> > For example, say I have repository X, which I do a bare clone on to
> > create repository Y for someone else to work on (effectively forking
> > repo X). Is there a way for me to see, from repository X, what commits
> > have been made to repository Y?
> >
> $ git remote update
> $ git log origin/<branch>
> $ gitk origin/<branch>
That's backwards. He's in the parent repo and wants to see what the
child did.
The answer is "no, not automatically. Git is fully distributed and
repository X knows nothing about repository Y that was cloned from it".
But also because git is fully distributed, you can simply treat the
cloned child like any other remote:
git remote add y /path/to/y
git remote update ;# or just "git fetch y"
git log y/<branch> ;# what happened in y's <branch>
gitk y/<branch>...<branch> ;# differences since y forked
-Peff
next prev parent reply other threads:[~2010-04-29 1:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-28 22:35 See commits on remote repository Bryan Richardson
2010-04-28 22:54 ` Sylvain Rabot
2010-04-29 1:49 ` Jeff King [this message]
2010-04-29 2:44 ` Bryan Richardson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100429014943.GA4269@coredump.intra.peff.net \
--to=peff@peff.net \
--cc=btricha@gmail.com \
--cc=git@vger.kernel.org \
--cc=sylvain@abstraction.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).