Thread (3 messages) flat view 3 messages, 2 authors, 2016-06-15

Re: is there a way to reference the branch point?

From: Sverre Rabbelier <hidden>
Date: 2016-06-15 22:48:08

Heya,

On Fri, Jan 29, 2010 at 23:29, layer [off-list ref] wrote:
If I make a branch `foo' off master, commit a bunch of times, is there
a way to reference the place on master from which I branched?
Depends, if you make a new branch from master, you can use 'git merge-base', so:

$ # on master
$ git checkout -b foo-topic-branch
$ # work work
$ git commit
$ # work work
$ git commit

Now you want to know where you branches off from master:

$ git merge-base foo-topic-branch master

That will show you the commit you branches off from, even if master
has grown new commits since then.

-- 
Cheers,

Sverre Rabbelier
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help