force git push origin branch code example
Example 1: git force push to remote
git push -f <remote> <branch>
# example: git push -f origin master
Example 2: 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()