1

When you run:

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

what config does it actually update under .git?

Snowcrash
  • 80,579
  • 89
  • 266
  • 376

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
  • 32,635
  • 12
  • 70
  • 99