Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Git commitに小さな問題があります。だから私はいくつかのプロジェクトに取り組んでおり、Gitを使用しています。Git コミットを行ったところ、誤って間違ったコミット メッセージを書き込んでしまいました。だから私の質問は:
とにかくGitでコミットメッセージを変更できますか?
注:私はこのようにしようとしました:
git commit -a --amend -m "New Commit Message"
しかし、うまくいきません。なんで?
ありがとう。
ファイルを追加していない最初のものを失い-aます。HEAD コミットを変更するだけです。
-a
git commit --amend -m"New Commit Message"