push to different branch github code example
Example 1: github Push local branch to Remote
git push origin <Branch_Name>
Example 2: git push to different remote branch
# To remove the exist origin
git remote remove origin
# And then add new origin master URL
git remote set-url origin git://new.url.here
Follow me on GITHUB/bilalahmedkhatri
Example 3: push local branch changes to remote branch
git push -u origin localBranch:remoteBranchToBeCreated