Move commits to a new branch
Move commits to a new branch
If you want your current commits to be moved to a new branch then run the following command on the terminal:
$ git branch feature
$ git reset --hard HEAD~1
If you want your current commits to be moved to a new branch then run the following command on the terminal:
$ git branch feature
$ git reset --hard HEAD~1
Leave a comment