Created
June 14, 2013 10:19
-
-
Save BrandAndCelebrities/5780850 to your computer and use it in GitHub Desktop.
Gérer une branche git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lister les branchs existantes | |
$ git branch | |
Créer une branch | |
$ git branch new_branch | |
Changer de branch | |
$ git checkout new_branch | |
Supprimer une branch | |
$ git branch -d new_branch | |
Examining branches from a remote repository | |
$ git branch -r | |
$ git checkout -b my-todo-copy origin/todo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment