2013-06-18 34 views

回答

0

我可能知道如何从命令行执行此操作。命令git log显示每个提交的基本信息,如提交ID,作者,提交日期和描述。使用git log --mergesgit log --min-parents=2您将只看到合并提交,因此您将能够检查合并发生的时间。
结账git-log了解更多详情

0

我四处寻找找到类似的东西 - 获取更改被拉入/合并到本地分支的时间戳。这是我发现了什么是有用的:

命令: git reflog show --date=default

输出:

5c4f140 [email protected]{Mon Aug 10 05:36:24 2015 +0000}: pull origin: Fast-forward 1ba6e4e [email protected]{Wed Aug 5 14:40:50 2015 +0000}: pull origin: Fast-forward 05382e4 [email protected]{Wed Jul 22 12:27:20 2015 +0000}: pull origin: Fast-forward bad194c [email protected]{Wed Jul 22 09:54:01 2015 +0000}: pull origin: Fast-forward 016f6cb [email protected]{Sat Jul 18 04:53:56 2015 +0000}: pull origin: Fast-forward b4839d3 [email protected]{Mon Jul 6 07:35:23 2015 +0000}: pull origin: Fast-forward

相关问题