0

git log情報を提供している特定のコミットを表す一意の sha を提供します。

commit 6793960b9e333d77b99405f84c78888e41d6c712  <--- THIS
Author: Cory Klein <cory.klein@------.com>
Date:   Thu Jul 18 11:45:51 2013 -0600

    Delete local files after transfer

チームのコミットを参照するために、これらの sha を時々渡します。コマンドgit logの実行時にその特定のコミットを参照するために必要な桁数のみが表示された場合は、きちんとしたものになります。git log

commit 67939  <--- Only 5 digits are needed to make this sha unique

これどうやってするの?

4

4 に答える 4

5

からman git-log:

--abbrev-commit
   Instead of showing the full 40-byte hexadecimal commit object name, show
   only a partial prefix. Non default number of digits can be specified with
   "--abbrev=<n>" (which also modifies diff output, if it is displayed).

   This should make "--pretty=oneline" a whole lot more readable for people
   using 80-column terminals.

そう:

git log --abbrev-commit
于 2013-07-18T18:05:53.120 に答える
0

次のようなログ出力を表示するには:

* ddddeee E
* zzzzzzz D
* 2222222 C
* 1111111 B
* 0000000 A

簡単に使用できます

git log --oneline --graph
于 2013-07-18T19:42:25.210 に答える