13

I created a new local branch and pushed it with

git push origin my-branch

How can I automatically set up my local branch to tag the just created remote branch?

Or do I always need

git branch --set-upstream my-branch  origin/my-branch
Alex
  • 32,506
  • 16
  • 106
  • 171

1 Answers1

14

You can use git push -u origin my-branch. This will set-up everything for argument-less push/pull.

pmr
  • 58,701
  • 10
  • 113
  • 156