I\'m a not a git expert so this might look like a silly question.
I have local and remote repositories, I want to sync my local with the remote repository. I have many l
The permanent fix if you always want to create a new branch on the remote to mirror and track your local branch(or vice-versa) is:
git config --global push.default current
I always configure my local git with this command after I do git clone. Although it can be applied anytime when the local-remote branch "Git fatal: The current branch has no upstream branch" error occurs.
Hope this helps. Much peace. :)