gpt4 book ai didi

Colab 上的 Git 使用问题

转载 作者:行者123 更新时间:2023-12-04 18:49:35 24 4
gpt4 key购买 nike

我正在尝试在 Google Colab 上为 Torch 使用自定义安装脚本。
我遇到了这段代码的问题:

#!/usr/bin/env bash

git fetch
git reset --hard
# Submodule update is done inside install.sh
/root/torch/install.sh -s
Colab 将此报告给 git 命令:

fatal: not a git repository (or any of the parent directories): .git

最佳答案

fatal: not a git repository (or any of the parent directories): .git表示您尝试运行 Git 命令但不在 Git 存储库中。
第一条命令git fetch将从一个或多个其他存储库中获取分支和/或标签,因此脚本应放置在 git 存储库中。
确保你在 git repo 中,执行 git statusgit remote -v检查您是否在 repo 文件夹中。
您可以使用 ! 在 Colab 中调用 shell 命令。或 %%shell在你的牢房里:!pwd!git status

关于Colab 上的 Git 使用问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63762327/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com