git - make sure push default setting is correct!
Somewhere along the line, my .gitconfig file changed and set/reset the push default to something other than what it was.
[push]
default = matching
This is what it should be:
[push]
default = simple
The value it is set to, determines what git will do with the branches on your machine …