xxxxxxxxxx
"-u" connects your local branch to remote branch
you only use it in first time pushing
# Create a branch and switch to it
$ git checkout -b bugFix
# Work on bugFix and then commit the changes
$ git add .
$ git commit -m "Put some print statements. Found the bug."
# Since this is the first time you push to origin
$ git push -u origin bugFix
xxxxxxxxxx
$ git push -u origin test
Branch test set up to track remote branch test from origin.
Everything up-to-date
$ git pull
Already up-to-date.