87

私は大学のコースで課題を行っており、この課題のバージョン管理として Git を使用しています。私が取り組んできたゲームは完成しました。ただし、手を差し伸べるとともに、Git ログを送信して、作業中の進捗状況を効果的に示したいと思います。

私はこれを試しました:

git log --stat > log.log

しかし、それは多かれ少なかれ、非常に読みにくいものを私に与えるだけです。これを適切にフォーマットするためのコマンドは何ですか?

4

3 に答える 3

138

デフォルトとは異なる形式を使用することをお勧めします。私の通常の選択はグラフ付きの要約ですが、通常は 1 行の要約だけでうまくいきます。

オプション 1: グラフ付きの 1 行の要約

git log --pretty=format:'%h : %s' --graph > log.log

結果:

* 2d3acf9 : ignore errors from SIGCHLD on trap
*   5e3ee11 : Merge branch 'master' of git://github.com/dustin/grit
|\
| * 420eac9 : Added a method for getting the current branch.
* | 30e367c : timeout code and tests
* | 5a09431 : add timeout protection to grit
* | e1193f8 : support for heads with slashes in them
|/
* d6016bc : require time for xmlschema

オプション 2: グラフなしの 1 行の要約

git log --pretty=format:'%h was %an, %ar, message: %s' > log.log

結果:

a6b444f was Scott Chacon, 5 days ago, message: dammit, this is the second time this has re
49d77f7 was Scott Chacon, 8 days ago, message: modified index to create refs/heads if it i
9764edd was Hans Engel, 11 days ago, message: Add diff-lcs dependency
e1ba1e3 was Hans Engel, 11 days ago, message: Add dependency for Open4
0f87b4d was Scott Chacon, 12 days ago, message: merged recent changes

詳細な書式設定オプションについては、こちらのドキュメントを参照してください。

于 2012-04-08T14:15:40.363 に答える
15

この行を試してください

git log > log.txt

于 2015-03-14T03:43:54.737 に答える
6
git log --oneline --decorate > log.txt
于 2015-03-14T04:11:49.920 に答える