git push master code example

Example 1: git push origin master --force

git push origin --force

Example 2: git push repo

git remote add origin https://github.com/tqisjim/google-oauth.git
git push -u origin master

Example 3: git push

git push -u githubrepo master

Example 4: git push main

git push <remote> --force

Example 5: 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()