Answers for "html start with bootstrao"

19

roll back last commit in git

git reset --soft HEAD~1
Posted by: Guest on March-30-2020
0

git revert changes in last commit

# by "undo changes" I mean undo commit
# undo changes in last commit, and keep them staged
git reset --soft HEAD~1

# undo changes in last commit, and keep them unstaged
git reset --hard HEAD~1
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language