新しく作成されたブランチですべてのコミットメッセージ(git log --format =%sなど)を取得したいのですが。git hooks/pre-receive - 新しく作成されたブランチですべてのコミットメッセージを取得する方法?
abcd - from yesterday
bcde - from today
という2つのコミットがあるとしましょう。このコードを使用すると、
while read old new ref; do
....
done
古いものは40個となり、新しいものはbcdeになります。この場合、どのようにコミットメッセージをすべて取得できますか?
ユースケース:
git checkout master
git checkout -b new_branch
some_work
git add; git commit
some_other_work
git add; git commit
git push origin new_branch
。
多くのありがとうございます。 $古いがゼロの場合
まあが、それはtはすべてのコメントを表示勝ちました。 – user2194805