如何使用“--path”在git配置中?
看起来 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
$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.