git push to another branch code example

Example 1: git push to branch

# If its your first push
git push -u origin BRANCH

# Otherwise
git push origin BRANCH

Example 2: git new branch push to remote

git push -u origin <branch>

Example 3: 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 4: Push your branch up to the remote.

$ git push <remote> <branch>

Tags:

Html Example