git push branch name code example

Example 1: git push origin master --force

git push origin --force

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: git push origin master python verbose

from git import Repo
repo = Repo('path/to/git/repo')  # if repo is CWD just do '.'

repo.index.add(['bla.txt'])
repo.index.commit('my commit description')
origin = repo.remote('origin')
origin.push()