症状
git blame を実行すると Not Committed Yet
が発生する。(blameが期待した通りに実行できない)
1 2 3 4 5 6 |
000000000 (Not Committed Yet 2019-09-02 20:47:07 +0900 1) /////////////////////////////////////////////////////////// 000000000 (Not Committed Yet 2019-09-02 20:47:07 +0900 2) // Sample.h 000000000 (Not Committed Yet 2019-09-02 20:47:07 +0900 3) // Implementation of the Class Sample 000000000 (Not Committed Yet 2019-09-02 20:47:07 +0900 4) // Created on: 2019/07/11 21:24:22 000000000 (Not Committed Yet 2019-09-02 20:47:07 +0900 5) // Original author: Jane Doe 000000000 (Not Committed Yet 2019-09-02 20:47:07 +0900 6) /////////////////////////////////////////////////////////// |
解決方法
ホワイトスペースを無視する。
1 |
$ git blame -w sample.h |