Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 274 Bytes

16-amend-a-commit.md

File metadata and controls

16 lines (11 loc) · 274 Bytes

Amend a commit

If you made a commit, but you want to change it afterwards, you can do that with

git commit --amend

If you want to not change the original commit message, you can do

git commit --amend --no-edit

Next