Answers for "made a branch off of another branch by accident, how to change new branch to start from master"

0

how to move master changes to branch

git checkout -b newfeat master
git rebase --onto working-branch origin/master newfeat
git checkout master
git reset --hard origin/master

At this point you have:
*master pointing to the last pushed commit (origin/master)
*working-branch never changed
*a new newfeat branch that contains all the new commits and is ahead of working-branch.
Posted by: Guest on November-10-2020
0

git move change from master to new branch

git stash						//you can stash the changes in the master branch .
git checkout -b newbranchname	//then checkout the branch
git stash pop					//and pop the changes here
Posted by: Guest on November-22-2021

Code answers related to "made a branch off of another branch by accident, how to change new branch to start from master"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language