Mots clés : gitrepositorygit-branchgit-pushgit-remotegit
91
git checkout -b <branch>
git push -u origin <branch>
88
git push --all -u
73
$ git checkout -b branchB $ git push origin branchB:branchB
$ git config branch.branchB.remote origin $ git config branch.branchB.merge refs/heads/branchB
[branch "branchB"] remote = origin merge = refs/heads/branchB
67
git branch <branch-name>
git push -u origin <branch-name>
53
git checkout -b branchname
git push -u origin HEAD