$ git commit --amend
を行うと現在のブランチの先頭にコミットを上書きすることになるらしいが何かつらつらと表示されて焦る。意訳の説明文を日本語で追記しています。ようは…コミットのメッセージを書いて然るべき操作を今後の手続きとしてせよ!ってことらしいんだけど、なんだか難しい。
※(追伸)別に難しくなくて…いつも「git commit -ma “メッセージ”」でやっていることが、Update README.mdに入るっていうことらしい。
Update README.md # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # > コミットのメッセージを入力して。#で書いたものは無視されるよ # Author: UserName <2697117+UserName@users.noreply.github.com> # # On branch master # Your branch and 'origin/master' have diverged, # and have 1 and 1 different commit each, respectively. # (use "git pull" to merge the remote branch into yours) # > マスターブランチとorign/masterが分岐されているよ。 # > 1つ1つ異なるコミットがあるよ。 # > git pull をつかってリモートのブランチをあなたのブランチにマージして。 # # Changes to be committed: # (use "git reset HEAD^1 ..." to unstage) # > use git reset HEAD^1を使ってステージングの変更をコミットして。 # # new file: .htaccess # new file: 2019/201910.txt # new file: 2019/201911.txt # new file: 2019/201912.txt # new file: 2020/202005.txt # new file: 2021/20210824 # new file: 2022/git_knowledge.txt # modified: README.md # # Changes not staged for commit: # (use "git add/rm <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # > 変更がステージングにコミットされていない。add/rmで更新するなりcheckoutで削除して。 # # deleted: 201910.txt # deleted: 201911.txt # deleted: 201912.txt # deleted: 202005.txt # deleted: 20210824 # deleted: revision.txt #
コメント