git push flags code example
Example 1: git push origin master --force
git push origin --force
Example 2: git push
git clone https://github.com/<git-user>/<repo-name> && cd <repo-name>
git add <filename>
git commit -m "added some changes to my repo!"
git push origin master
Example 3: git push
git push -u githubrepo master
Example 4: git push f head
git checkout branchname
git reset --hard abcdef0
git push -f
Example 5: git push origin master python verbose
from git import Repo
repo = Repo('path/to/git/repo')
repo.index.add(['bla.txt'])
repo.index.commit('my commit description')
origin = repo.remote('origin')
origin.push()