我怎么知道何时创建了一个git分支?
我不想知道第一次提交该分支的时间。 我想知道什么时候创建了这个分支。
这是一个重现工作示例的脚本:
#! /bin/bash
set -x
set -e
mkdir test
cd test
git init
echo "hello" >readme
git add readme
git commit -m "initial import"
date
sleep 5
git checkout -b br1
date # this is the date that I want to find out.
sleep 5
echo "hello_br1" >readme
git commit -a -m "hello_br1"
date
echo "hello_br1_b" >readme
git commit -a -m "hello_br1_b"
git checkout master
echo "hello_master" >readme
git commit -a -m "hello_master"
git branch -a;
git log --all --graph --abbrev-commit --decorate --pretty=format:"%h - %an, %ad : %s" --date=iso
执行此操作:
./test.sh
++ set -e
++ mkdir test
++ cd test
++ git init
Initialized empty Git repository in /test_git/test2/.git/
++ echo hello
++ git add readme
++ git commit -m 'initial import'
[master (root-commit) 9b95944] initial import
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 readme
++ date
Fri Aug 16 17:51:24 CEST 2013
++ sleep 5
++ git checkout -b br1
Switched to a new branch 'br1'
++ date
Fri Aug 16 17:51:29 CEST 2013
++ sleep 5
++ echo hello_br1
++ git commit -a -m hello_br1
[br1 6c559cd] hello_br1
1 files changed, 1 insertions(+), 1 deletions(-)
++ date
Fri Aug 16 17:51:34 CEST 2013
++ echo hello_br1_b
++ git commit -a -m hello_br1_b
[br1 5f0d8ab] hello_br1_b
1 files changed, 1 insertions(+), 1 deletions(-)
++ git checkout master
Switched to branch 'master'
++ echo hello_master
++ git commit -a -m hello_master
[master 2ed092d] hello_master
1 files changed, 1 insertions(+), 1 deletions(-)
++ git branch -a
br1
* master
++ git log --all --graph --abbrev-commit --decorate '--pretty=format:%h - %an, %ad : %s' --date=iso
* 5f0d8ab - David Portabella, 2013-08-16 17:51:34 +0200 : hello_br1_b
* 6c559cd - David Portabella, 2013-08-16 17:51:34 +0200 : hello_br1
| * 2ed092d - David Portabella, 2013-08-16 17:51:34 +0200 : hello_master
|/
* 9b95944 - David Portabella, 2013-08-16 17:51:24 +0200 : initial import
所以,使用git log或git reflog,我可以找到初始导入的日期(17:51:24)和第一次提交到分支br1的日期(17:51:34)。 / p>
但是我需要找出分支br1的创建时间(17:51:29)。
怎么做?
(奖金问题:并且,它是否有哈希?如何知道谁创建了该分支)
答案 0 :(得分:29)
很抱歉,但Git没有保留关于何时创建分支的正式跟踪信息(它不是在存储库之间存储和共享的数据)。分支只是对提交的引用,仅此而已。这也意味着没有id或对象可以指向此数据。
reflog会跟踪对分支进行更改的时间,但它只是一段有限的历史记录,随着时间的推移而过期。它确实记录了一些信息。例如,git branch bar
在reflog中产生了这个条目:
:: git reflog show --date=iso bar
7d9b83d bar@{2013-08-16 12:23:28 -0400}: branch: Created from master
使用git checkout -b bar
时,我也看到了类似的条目:
:: git co -b bar
Switched to a new branch 'bar'
:: git reflog show --date=iso bar
d6970ef bar@{2013-08-16 12:30:50 -0400}: branch: Created from HEAD
因此,根据您的使用情况以及需要挖掘的距离,git reflog
实际上可能对您有用。
答案 1 :(得分:8)
你既不知道是谁创建了分支,也不知道它是什么时候创建的 - 至少不是Git本身。
因为 Git不跟踪分支元数据。它根本不关心谁创建了一个分支(你通常从遥控器获得很多分支),因为分支只是提交的指针(refs)。
因此分支也不有分支 - 实际上,Git ref只是.git
文件夹中的纯文本文件,包含它引用的对象的哈希值(或者,如果是符号引用,则引用其他引用的名称。)