“git créer une branche à partir de commit” Réponses codées

git créer une branche avec un engagement spécifique

 
# Create a new branch from previous commit's hash
git branch develop 04c900c
 
# Push the new branch to remote repository
git push --set-upstream origin develop
 
# Checkout the new branch
git checkout develop
 
Lucky Ladybird

Git Branch de Commit

You can create the branch via a hash:

git branch branchname <sha1-of-commit>
Or by using a symbolic reference:

git branch branchname HEAD~3
To checkout the branch when creating it, use

git checkout -b branchname <sha1-of-commit or HEAD~3>
Frightened Fox

git créer une branche à partir de commit

git branch branchname <sha1-of-commit>
bougui

créer une branche à partir de l'ancien engagement

git log --author=<name or email> // get user (press enter to find exact one)
git checkout -b justin a9c146a09505837ec03b //create and checkout branch
Grumpy Grouse

Créer une branche à partir d'un engagement

$ git branch <branch-name> <hash>
Tame Tortoise

Réponses similaires à “git créer une branche à partir de commit”

Questions similaires à “git créer une branche à partir de commit”

Plus de réponses similaires à “git créer une branche à partir de commit” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code