Mots clés : gitgit-branchgit
99
git push -u origin my_branch
git push -u origin HEAD
git branch --set-upstream-to origin/my_branch
git branch -u origin/my_branch
82
git config --global push.default current
git push -u
78
$ git push fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin master $ fuck git push --set-upstream origin master [enter/↑/↓/ctrl+c] Counting objects: 9, done. ...
64
git checkout -b my-branch origin/whatever
57
git branch -u origin/my-branch
git push -u origin my-branch
git checkout -b my-branch -t origin/my-branch
git checkout -b my-branch git push -u origin my-branch