You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Walkthrough
touch newfile.txt
git add .
git commit -am "new file added"
# Uups forgotten README
touch README
git add .
git commit --amend # README will be in same commit as newfile.txt
# + you can also changed the commit message