I want to change the Git default remote branch destination so I could just
git push
Instead of:
git push upstream >
git push upstream
In my case, I fixed by the following: * run git config --edit * In the git config file:
git config --edit
[branch "master"] remote = origin # <--- change the default origin here