pythonanywhere是否允许在免费帐户中安装其他Git版本?

问题描述 投票:-1回答:1

我正在尝试在pythonanywhere的bash控制台中运行此命令;

error

文本版本:

git config credential.helper 'cache --timeout=900'
fatal: not in a git repository
git pythonanywhere
1个回答
0
投票

如果要从任何地方执行它,请全局配置设置:

git config --global credential.helper 'cache --timeout=900'

这样,您不必依赖当前文件夹。但这将适用于all您的存储库。

© www.soinside.com 2019 - 2024. All rights reserved.