标签: python git pygit2
在pygit2中,如果我暂停添加或删除文件,我该怎样才能像使用git reset那样取消它们?
git reset
我需要使用pygit2来完成以下git操作:
git reset HEAD git checkout .
我可以用
repo = pygit2.Repository(target_dir) repo.checkout('HEAD')
但我不知道如何进行重置操作。
由于