push origin git code example
Example 1: git push origin
git branch -M main
then
git push -u origin main
or
git push -f origin main
or
git push origin master --force
Example 2: git push branch
git push -u origin <branch>
Example 3: git push remote
git push -u origin master // where 'master' is branch name
Example 4: 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()