“Git Move Changes to New Branch” Réponses codées

Comment déplacer les modifications non mise en scène dans une branche différente

git stash
git checkout -b new-branch
git stash pop
Mohan Munna

Git Move Changes to New Branch

git switch -c <new-branch>
chuksokwuenu

Git apporte vos modifications à une nouvelle branche

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>"
Enthusiastic Earthworm

Réponses similaires à “Git Move Changes to New Branch”

Questions similaires à “Git Move Changes to New Branch”

Plus de réponses similaires à “Git Move Changes to New Branch” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code