致命:在 .gitmodules 中找不到子模块路径 'dist' 的 url
fatal: No url found for submodule path 'dist' in .gitmodules
我正在尝试将我的应用程序部署到 git 个页面,但 GitHub 个页面出现状态失败。
当我开始“pages build and deployment
”时,我遇到了下一个问题:
1) Build > Checkout > Fetching submodules:
/usr/bin/git submodule sync --recursive
/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive
Error: fatal: No url found for submodule path 'dist' in .gitmodules
Error: The process '/usr/bin/git' failed with exit code 128
2)Deploy > Deploy to github pages:
Error: Error: No uploaded artifact was found!
Please check if there are any errors at build step.
我是不是做错了什么?
检查您的 .gitmodules
文件的内容:
如果它只包含一个条目 [submodule "dist"]
,带有模块路径 dist
,没有 URL,
然后完全删除 .gitmodules
文件,添加并提交。
(注意:,检查您是否有 dist(没有尾部斜线)条目,如果有,请将其删除)。
然后重试部署过程。
我正在尝试将我的应用程序部署到 git 个页面,但 GitHub 个页面出现状态失败。
当我开始“pages build and deployment
”时,我遇到了下一个问题:
1) Build > Checkout > Fetching submodules:
/usr/bin/git submodule sync --recursive
/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive
Error: fatal: No url found for submodule path 'dist' in .gitmodules
Error: The process '/usr/bin/git' failed with exit code 128
2)Deploy > Deploy to github pages:
Error: Error: No uploaded artifact was found!
Please check if there are any errors at build step.
我是不是做错了什么?
检查您的 .gitmodules
文件的内容:
如果它只包含一个条目 [submodule "dist"]
,带有模块路径 dist
,没有 URL,
然后完全删除 .gitmodules
文件,添加并提交。
(注意:
然后重试部署过程。