17

Support I create multiple branches (aaa, bbb, ccc) from a commit. Then, I create a new branch (ddd) from one of the branch (bbb) and a make a commit on it.

Then I pushed everything to a remote. How would another person knows the new branch (ddd) comes from which branch?

The git commands I did was:

git branch aaa
git branch bbb
git branch ccc
git branch ddd bbb
git checkout ddd
echo 2 >> file
git add file
git commit -m "2"

And the git log would show


* commit d259a3b (HEAD, ddd)
|
| 2
|

* commit efb038c (develop, ccc, bbb, aaa)
|
| 1
|

* commit dd24bb6 (master)

It is even possible to know that ddd was branched from bbb?

Thanks

Ng Khin Hooi
  • 218
  • 2
  • 7

4 Answers4

7

It is indeed impossible in general. Git records only1 the single commit-ID (SHA-1) to which a reference name (such as a branch or tag) points. The history of that commit is determined solely by that commit's parent IDs, which do not record branch-names. When you push to a remote, your "push" operation sends the SHA-1 of the commit you're pushing (plus more SHA-1s for any other linked objects—trees and files, parent commits, etc—plus the contents of all those objects, as needed based on what's missing on the remote), and asks the remote to set its branch to point to the new SHA-1.

In other words, you tell the remote: "here, have commit 1234567, and set branch label ddd = 1234567". It may tell you "to do that I need five other commits", one of which you have labeled as bbb, but if you don't tell the remote "oh by the way set label bbb to this other commit too" then it won't have that information anywhere.


1This is a bit of an overstatement: git also records, in the reflog, each SHA-1 that is stored in a label, including branch labels. It is therefore possible to walk back through the label's history to "figure out where it started". There are two limits on this though: reflogs are purely local, never transmitted by fetch or push; and reflogs expire, generally after 90 days in these cases (although this is configurable and there are additional complexities). So as long as we say there's a push step, or allow more than 3 months to pass, there's no way to tell.

torek
  • 389,216
  • 48
  • 524
  • 664
  • @VonC: I was thinking of searching for that (or similar) and marking as a dup, but didn't quite get around to it while also working on other things in other windows... :-) – torek Apr 09 '15 at 10:07
  • I actually like those "near-dupe", as explaining things over again sometimes bring new insights. – VonC Apr 09 '15 at 10:27
  • Thanks a lot guys. This brings me to a question, I guess you are familiar with nvie's gitflow commands; when doing `git flow feature finish `, it will know which branch it starts from, and to merge it back correctly. Does this mean this only works locally? I am not quite familiar with git command wrappers. Thanks again – Ng Khin Hooi Apr 10 '15 at 00:35
  • @NgKhinHooi: I have not used `git flow` but it must use some side channel (recording the "target" for merging in the config file, or somewhere hidden in the repo using another ref, or something like that). – torek Apr 10 '15 at 01:17
4

add those two functions to your .bashrc:

function newbranch() {
    history_file=".git/branching_history"
    from=`git rev-parse --abbrev-ref HEAD`
    to=$1
    git checkout -b $1 > /dev/null 2>&1
    DATE=`date '+%Y-%m-%d %H:%M:%S'`
    echo "$DATE: from $from created branch $1" >> $history_file
}

function branchinghistory() {
    cat .git/branching_history
}

then when you create a new branch, don't run git checkout -b mybranch but do:

newbranch mybranch

this will store your branching log in .git/branching_history file. You can check the log with:

branchinghistory

the output should be:

2020-04-22 23:59:06: from master created branch mybranch

kkarpieszuk
  • 476
  • 2
  • 9
  • I often have to create new branches from a feature wip branch and sometimes forget if i did or not. This script will come in handy. Thx! – Isaac Pak Feb 02 '22 at 13:25
2

Branches are nothing more than pointers to a specific commit. You can only see from which commit ddd was branched from, not which branch.

Misch
  • 9,510
  • 4
  • 34
  • 49
1

Branches are simply pointers to commits. Because of this, it is not possible to see where a branch originated from, other than observing that two branches have an identical history up to some point.

For someone upstream, it is not relevant where a branch originated from, only that it contains a certain commit (or sequence of commits). This determines how/if git is able to fast-forward or merge branches together.

Joost
  • 3,974
  • 3
  • 25
  • 54