Well the title is self explanatory. What will be the python code equivalent to running git reset --hard
(on terminal) using GitPython module?
I searched for reset
in the documentation and found this:
class git.refs.head.HEAD(repo, path='HEAD')
reset(commit='HEAD', index=True, working_tree=False, paths=None, **kwargs)
Reset our HEAD to the given commit optionally synchronizing the index and working tree. The reference we refer to will be set to commit as well.