wada811 / blog

wada811's blog
https://github.com/wada811/blog/issues
Apache License 2.0
6 stars 0 forks source link

git commit --amend でコミットメッセージを編集しない #1

Open wada811 opened 5 years ago

wada811 commented 5 years ago

Why

git commit --amend すると vim などのエディタが開く。 そのため、以下の場合ではエディタを閉じる必要があり面倒である。

What

以下のオプションを使う。

-C, --reuse-message <commit>    reuse message from specified commit

How

git commit --amend -C @

Ref