Answers for "git add amend"

8

git amend

git commit --amend
Posted by: Guest on May-15-2020
0

git commit amend

# make your change
git add . # or add individual files
git commit --amend --no-edit
# now your last commit contains that change!
# WARNING: never amend public commits
Posted by: Guest on May-04-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language