git track origin code example
Example 1: github set branch upstream
git push --set-upstream origin <remote-branch>
Example 2: git link local branch to remote branch
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
git push --set-upstream origin <remote-branch>
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'