为什么我在 git 存储库中找到的子模块符号链接出现错误 404?
Why do am i getting error 404 on my sub module symlink found on my git repo?
我的 git 子模块目前有问题。我在克隆的项目文件夹中创建了一个 git 子模块,它就出现在我的仓库中。但是当我点击符号链接时,它给我错误 404 找不到页面。我是 VS Code 和 Windows 8 x64。非常感谢你的帮助!以下是 .gitmodules
中的内容
[submodule "themes/casper-two"]
path = themes/casper-two
url = "https://github.com/eueung/hugo-casper-two"
我在 hugo-casper-two 存储库中找不到 caa182b
提交,因此我相信您需要将子模块更新为可用的最新提交。为此,运行 从您的项目目录中执行以下命令:
git submodule foreach git pull origin master
此命令将更新项目中的每个子模块,并从它们的主分支中提取最新的提交。
记得之后提交你自己的仓库。
git commit -am "Pulled down updates to submodules"
我的 git 子模块目前有问题。我在克隆的项目文件夹中创建了一个 git 子模块,它就出现在我的仓库中。但是当我点击符号链接时,它给我错误 404 找不到页面。我是 VS Code 和 Windows 8 x64。非常感谢你的帮助!以下是 .gitmodules
中的内容[submodule "themes/casper-two"]
path = themes/casper-two
url = "https://github.com/eueung/hugo-casper-two"
我在 hugo-casper-two 存储库中找不到 caa182b
提交,因此我相信您需要将子模块更新为可用的最新提交。为此,运行 从您的项目目录中执行以下命令:
git submodule foreach git pull origin master
此命令将更新项目中的每个子模块,并从它们的主分支中提取最新的提交。
记得之后提交你自己的仓库。
git commit -am "Pulled down updates to submodules"