Horje
git move changes to new branch Code Example
how to move unstaged changes to different branch
git stash
git checkout -b new-branch
git stash pop
git move changes to new branch
git switch -c <new-branch>
git bring your changes to a new branch
git checkout -b <new-branch>
// This will leave your current branch as it is, create and checkout a new branch and keep all your changes. You can then stage changes in files to commit with:

git add <files>
//and commit to your new branch with:

git commit -m "<Brief description of this commit>"
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.





Shell

Related
pm2 typescript Code Example pm2 typescript Code Example
alacritty ubuntu install Code Example alacritty ubuntu install Code Example
run springboot as a service linux Code Example run springboot as a service linux Code Example
how to overwrite symlink linux Code Example how to overwrite symlink linux Code Example
what is meant by valence shell Code Example what is meant by valence shell Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13