如何使用“--path”在git配置中?

发布于 2024-12-10 22:20:42 字数 404 浏览 1 评论 0原文

看起来 Git 无法解析 submodule~/ 路径。

我尝试将 ~/foo/myproject.git 放入 .gitmodules 作为子模块 URL 路径,但是当我尝试时

$ git submodule init

,出现错误,提示 Git 找不到存储库。

如果我将其更改为 /home/userA/foo/myproject.git 之类的路径,一切正常。

我查看了 Git 的帮助。看起来 --path 可以做一些事情。

我不喜欢使用绝对路径,因为有时完整路径不受我的控制。有没有办法使用解析路径?

It looks like Git can't resolve the ~/ path for submodule.

I tried to put ~/foo/myproject.git in .gitmodules as the submodule URL path, but when I try

$ git submodule init

I get an error saying Git can't find the repository.

If I change it to a path like /home/userA/foo/myproject.git, everything works fine.

I checked the help from Git. It looks like the --path can do something.

I don't like using an absolute path because sometimes the full path is not under my control. Is there a way to use a resolved path?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生共白头 2024-12-17 22:20:42

使用$HOME/foo/myproject.git,它的效果比~更好。波形符只是一个捷径,它的扩展并不总是好的。

Git 子模块路径从很久以前就可以是相对路径,因此最好告诉 gitconfig 相对路径。

Use $HOME/foo/myproject.git, it works is better than ~. Tilde is just a shortcut, its expansion isn't always good.

Git submodule paths can be relative since a long time ago, so it's always better to tell gitconfig the relative path.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文