Answers for "git reset keep changes"

2

git reset keep changes

git reset HEAD^ --soft
Posted by: Guest on May-19-2020
1

git revert commit but keep changes

git reset HEAD^
Posted by: Guest on August-04-2020
0

git lost changes after reset --keep

git reflog is your friend.
Find the commit that you want to be on in that list and you can reset to it
for example:git reset --hard e870e41

(If you didn't commit your changes... you might be in trouble - commit early, and commit often!)
Posted by: Guest on July-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language