Answers for "git change to old commit"

76

git change commit message of old commit

git commit --amend -m "New commit message"
Posted by: Guest on March-11-2020
0

git command change to previous comit

git revert --no-commit 0766c053..HEAD
git commit


If you really do want to have individual commits 
(instead of reverting everything with one big commit), 
then you can pass --no-edit instead of --no-commit, 
so that you don't have to edit a commit 
message for each reversion. – user456814
Posted by: Guest on December-08-2020
0

git command change to previous comit

git checkout <commit_id>
git checkout -b <new branch> <commit_id>
git checkout HEAD~X // x is the number of commits t go back
Posted by: Guest on December-08-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language