I accidentally tracked my main branch from tracking the source of the original, I think. I used to be able to run git pull and git push , and he would know that I had in mind git push origin master , but now thatβs not the case, and I think it is tracking another branch because git push origin master works fine ( everything is up to date) and git push tells me that it cannot speed up transitions.
Here's my git branch -a :
ianstormtaylor:nib Storm$ git branch -a * master original transforms remotes/origin/HEAD -> origin/master remotes/origin/master remotes/origin/sizing remotes/origin/transforms
Not sure if this remotes/origin/HEAD -> origin/master is the part that is messed up.
I think all this was caused by calling git merge origin sizing when I wanted to do git merge sizing (for now on the main).
Does anyone know what is happening and can help? I would just like to go back to the default remote tracking setting that git clone creates.
source share