git commit previous commit at new commit code example
Example 1: git go back to previous commit
git checkout 12feg3435 #commit ID
Example 2: make previous commit master
git checkout master
git reset --hard <old_commit_id>
git checkout 12feg3435 #commit ID
git checkout master
git reset --hard <old_commit_id>