I can currently do it by following these three steps
- Unstage by using
git reset HEAD <file>... - checkout to the branch
git checkout [-b] <branchname> - Stage again
git add <file>...
Is there a better way of moving the staged changes?
I can currently do it by following these three steps
git reset HEAD <file>...git checkout [-b] <branchname>git add <file>...Is there a better way of moving the staged changes?