Git no checkoutclone Issue

Git no checkoutclone Issue

在用TortoiseGit下载代码的时候,遇到不能下载的问题:

unknown option: --no-checkoutclone

可以通过修改生成的命令行,在Git Bash Here执行解决

git.exe --no-checkoutclone --progress --branch dev -v --depth 1 "URL" "DirectoryPath"

to

git.exe clone --no-checkout --progress --branch dev -v --depth 1 "URL" "DirectoryPath"

打赏