Is there a way to determine when a git branch was created? I have a branch in my repo and and I don't remember creating it and thought maybe seeing the creation timestamp would jog my memory.
|
feedback
|
$ git show --summary `git merge-base branch master` If you'd rather see it in context, then use $ gitk --all --select-commit=`git merge-base branch master` | |||||||||||||||
feedback
|
|
Note that git-reflog can take most git-log flags. Further note that the $ git reflog --date=local
763008c HEAD@{Fri Aug 20 10:09:18 2010}: pull : Fast-forward
f6cec0a HEAD@{Tue Aug 10 09:37:55 2010}: pull : Fast-forward
e9e70bc HEAD@{Thu Feb 4 02:51:10 2010}: pull : Fast forward
836f48c HEAD@{Thu Jan 21 14:08:14 2010}: checkout: moving from master to master
836f48c HEAD@{Thu Jan 21 14:08:10 2010}: pull : Fast forward
24bc734 HEAD@{Wed Jan 20 12:05:45 2010}: checkout: moving from 74fca6a42863ffacaf7ba6f1936a9f228950f657
74fca6a HEAD@{Wed Jan 20 11:55:43 2010}: checkout: moving from master to v2.6.31
24bc734 HEAD@{Wed Jan 20 11:44:42 2010}: pull : Fast forward
964fe08 HEAD@{Mon Oct 26 15:29:29 2009}: checkout: moving from 4a6908a3a050aacc9c3a2f36b276b46c0629ad91
4a6908a HEAD@{Mon Oct 26 14:52:12 2009}: checkout: moving from master to v2.6.28
It may also be useful at times to use $ git reflog --date=relative
763008c HEAD@{4 weeks ago}: pull : Fast-forward
f6cec0a HEAD@{6 weeks ago}: pull : Fast-forward
e9e70bc HEAD@{8 months ago}: pull : Fast forward
836f48c HEAD@{8 months ago}: checkout: moving from master to master
836f48c HEAD@{8 months ago}: pull : Fast forward
24bc734 HEAD@{8 months ago}: checkout: moving from 74fca6a42863ffacaf7ba6f1936a9f228950f657 to master
74fca6a HEAD@{8 months ago}: checkout: moving from master to v2.6.31
24bc734 HEAD@{8 months ago}: pull : Fast forward
964fe08 HEAD@{11 months ago}: checkout: moving from 4a6908a3a050aacc9c3a2f36b276b46c0629ad91 to master
4a6908a HEAD@{11 months ago}: checkout: moving from master to v2.6.28
One last note: the git reflog --date=local --all
860e4e4 refs/heads/master@{Sun Sep 19 23:00:30 2010}: commit: Second.
17695bc refs/heads/example_branch@{Mon Sep 20 00:31:06 2010}: branch: Created from HEAD
| |||||||
feedback
|
|
First, if you branch was created within
You would get who created a branch, how many operations ago, and from which branch (well, it might be just "Created from HEAD", which doesn't help much). That is what MikeSep said in his answer. Second, if you have branch for longer than If you know that the branch in question was created off master branch (forking from master branch), for example, you can use the following command to see common ancestor:
You can also try This is what gbacon said in his response. | |||||
feedback
|
|
I'm not sure of the git command for it yet, but I think you can find them in the reflogs.
My files appear to have a unix timestamp in them. Update: There appears to be an option to use the reflog history instead of the commit history when printing the logs:
You can follow this log as well, back to when you created the branch. | ||||
|
feedback
|
|
found this that was very helpful http://www.commandlinefu.com/commands/view/2345/show-git-branches-by-date-useful-for-showing-active-branches | |||
|
feedback
|