Answers for "git push -u origin my-branch"

1

git push u origin master

git push -u origin <branch_name>
Posted by: Guest on September-01-2021
0

git push origin current branch

git push origin HEAD
    A handy way to push the current branch to the same name on the remote.

# To set upstream tracking information in the local branch,
# if you haven't already pushed to the origin.
git push -u origin HEAD
Posted by: Guest on January-12-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language