I have created a local branch, added few files and pushed them onto remote. When I pushed my changes for the first time, I used:
git push origin test1 - where test1 is the name of my branch.
Hereafter, I have made additional changes and just doing git push.
Do I need to do specify remote name every time I push or that is set-up after the first time I do push?
Also, when I do git branch -vv, I see the following:
master 6727062 [origin/master] ..
test c745cca ..
* test1 4bd622d ..
testx 2fbfdfc ..
I was expecting test1 branch to track remote test1 but I don't see that here.
What Am I missing?