git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Shawn O. Pearce" <spearce@spearce.org>
To: Tim Harper <timcharper@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: using rev-list to tell if a branch is behind or ahead
Date: Tue, 20 May 2008 16:24:38 -0400	[thread overview]
Message-ID: <20080520202438.GG29038@spearce.org> (raw)
In-Reply-To: <3703BF54-3619-432F-8B65-09AF17299CAD@gmail.com>

Tim Harper <timcharper@gmail.com> wrote:
> I'm implementing a ruby interface to git and am wanting to be able to  
> ask if a branch is ahead or behind.
> 
> I looked in the builtin-checkout.c file and see this code:
> 
> 	/* Run "rev-list --left-right ours...theirs" internally... */
...
> It looks like it's calling rev-parse.  But, when I call it with the  
> same arguments (using branches or commit sha1's), it only will list  
> commits that are in right and not in left.  I need it to show both  
> ways: commits that are in the right and not in left, and commits that  
> are in the left but not in right.
> 
> Do I need to call rev-parse twice to achieve this?

No.  You need to use the triple dot operator ("...") not the
double dot operator ("..").

> Here's a sample of what I'm trying currently:
> ~ $ mkdir test
> ~ $ cd test/
> ~/test $ git init
> Initialized empty Git repository in .git/
> ~/test $ git
> ~/test $ echo content > file.txt
> ~/test $ git add file.txt && git commit -m "Initial commit"
> Created initial commit f5e4160: Initial commit
>  1 files changed, 1 insertions(+), 0 deletions(-)
>  create mode 100644 file.txt
> ~/test master$ git co -b task
> Switched to a new branch "task"
> ~/test task$ echo changes >> file.txt
> ~/test task$ git add file.txt && git commit -m "Some changes"
> Created commit 96492ee: Some changes
>  1 files changed, 1 insertions(+), 0 deletions(-)
> ~/test task$ git rev-list --left-right task..master --

You need an extra "." between task and master, this should be:

  git rev-list --left-right task...master --

> ~/test task$ git rev-list --left-right master..task --
> >96492ee80143f43417b00699ff29330d0027df7f

-- 
Shawn.

  reply	other threads:[~2008-05-20 20:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-20 20:14 using rev-list to tell if a branch is behind or ahead Tim Harper
2008-05-20 20:24 ` Shawn O. Pearce [this message]
     [not found] <F3CD27F7-D509-41A3-B3C8-0B9124537DDA@gmail.com>
2008-05-20 20:33 ` Tim Harper

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=20080520202438.GG29038@spearce.org \
    --to=spearce@spearce.org \
    --cc=git@vger.kernel.org \
    --cc=timcharper@gmail.com \
    /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).