pythonanywhere 是否允许在免费帐户中安装其他 Git 版本?
Does pythonanywhere allow install other Git version in a free account?
我正在尝试 运行 在 pythonanywhere 的 bash 控制台中执行此命令;
文字版:
git config credential.helper 'cache --timeout=900'
fatal: not in a git repository
如果您想从任何地方执行它,请全局配置设置:
git config --global credential.helper 'cache --timeout=900'
这样,您就不会依赖于当前文件夹。
但这将适用于 所有 您的存储库。
我正在尝试 运行 在 pythonanywhere 的 bash 控制台中执行此命令;
文字版:
git config credential.helper 'cache --timeout=900'
fatal: not in a git repository
如果您想从任何地方执行它,请全局配置设置:
git config --global credential.helper 'cache --timeout=900'
这样,您就不会依赖于当前文件夹。
但这将适用于 所有 您的存储库。