!在 Google Colab 中使用 npx 时找不到主错误的提交哈希
! could not find commit hash for master error when using npx in Google Colab
我 运行 Google Colab 上的以下代码:
!npx degit cironis/ep4 -f
我收到此错误消息:
npx: installed 1 in 0.975s
> destination directory is not empty. Using --force, continuing
! could not find commit hash for master
我在另一个存储库中使用了完全相同的代码,并且运行良好。但它不适用于此存储库。我做错了什么?
Github 已将其默认分支从 master
更改为 main
。但默认情况下 degit 仍然使用 master
。因此,您需要明确告诉 degit 使用 main
!npx degit cironis/ep4#main -f
这应该可以正确下载。
我 运行 Google Colab 上的以下代码:
!npx degit cironis/ep4 -f
我收到此错误消息:
npx: installed 1 in 0.975s
> destination directory is not empty. Using --force, continuing
! could not find commit hash for master
我在另一个存储库中使用了完全相同的代码,并且运行良好。但它不适用于此存储库。我做错了什么?
Github 已将其默认分支从 master
更改为 main
。但默认情况下 degit 仍然使用 master
。因此,您需要明确告诉 degit 使用 main
!npx degit cironis/ep4#main -f
这应该可以正确下载。