pytorch _pygit2.GitError:未找到存储库

syqv5f0l  于 2023-04-30  发布在  Git
关注(0)|答案(1)|浏览(138)
def save_experiment_config(self):
    with open(os.path.join(self.experiment_dir, 'parameters.txt'), 'w') as file:
        config_dict = vars(self.args)
        for k in vars(self.args):
            file.write(f"{k}={config_dict[k]} \n")
        repo = Repository('.')
        file.write(f"git-repo={repo.head.shorthand} \n")

我运行代码,但出现错误“_pygit2。GitError:未找到存储库。“我不知道该怎么办?谢谢你的帮助

6ojccjat

6ojccjat1#

我想我知道答案了
这是“所有权检查”,因为在早期版本中,当我们运行repo = Repository('.')时,我们需要使用目录所有权的同一用户运行

相关问题