Search code examples
pythongitgitpython

How to do a git reset --hard using gitPython?


Well the title is self explanatory. What will be the python code equivalent to running git reset --hard (on terminal) using GitPython module?


Solution

  • 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.