0

When you run:

git branch --set-upstream-to=origin/<branch> master

what config does it actually update under .git?

Snowcrash
  • 73,844
  • 72
  • 228
  • 347

1 Answers1

2

It updates the .git/config file of your current repo, setting remote and merge properties under the specified branch:

[branch "master"]
    remote = origin
    merge = <branch>
1615903
  • 28,988
  • 11
  • 62
  • 87