Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git track remote branch

# Set upstream when pushing to remote
git push -u origin topic

# Set upstream without pushing it
# with option -u / --set-upstream-to
git branch -u origin/topic
git branch --set-upstream-to=origin/topic
 
PREVIOUS NEXT
Tagged: #git #track #remote #branch
ADD COMMENT
Topic
Name
8+3 =