2010-09-09 206 views
1

如何找到哪些git提交某個文件被更改?如..查找文件歷史記錄

混帳 - 當 - 做 - 它改變SCR/ThatBuggyClass.java

88fa9f (HEAD) last time trying to debug it 
99321c another round with ThatBuggyClass 
... 

回答

3

使用git log

git log src/ThatBuggyClass.java 

可以使用--oneline開關格式化等的輸出你的例子:

git log --oneline src/ThatBuggyClass.java 
+0

做到了!乾杯! – filippo 2010-09-09 10:33:02