“commis à la mauvaise branche” Réponses codées

commis à la mauvaise branche

# undo the last commit, but leave the changes available
git reset HEAD~ --soft
git stash
# move to the correct branch
git checkout name-of-the-correct-branch
git stash pop
git add . # or add individual files
git commit -m "your message here";
# now your changes are on the correct branch
Frantic Flatworm

attaché à la mauvaise branche

git stash
git checkout branch123
git stash apply
Successful Seahorse

Correction de commit sur la mauvaise branche

download git history extension for vscode and manage you history

https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory
Manohar Shrestha

Réponses similaires à “commis à la mauvaise branche”

Questions similaires à “commis à la mauvaise branche”

Plus de réponses similaires à “commis à la mauvaise branche” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code