Create new branch with git command line
Say you have made some changes on a branch currently but dont want to put these changes on this branch but instead on a new branch
First check your current status of your git
git status
Stash your changes, don't worry they wont be lost
git stash
...
blog.azcodez.com2 min read