GitHub:将文件放入单独的存储库中
我需要将在线存储库中的特定文件引入当前项目的本地克隆中。我还希望该文件位于当前项目的特定目录中。我不想走最简单的路线(从克隆复制文件);我宁愿让该文件可以从在线存储库更新,并将该文件推送到我当前项目的在线存储库。
谢谢, 东正
I need a specific file from an online repo brought into the local clone of my current project. I'd also like the file in a specific directory in the current project. I don't want to go the easiest route (copy the file from the clone); I'd rather have the file be updatable from the online repo and have that file pushed to my current project's online repo.
Thanks,
DZ
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也许可以使用子模块:
http://speirs.org /blog/2009/5/11/understanding-git-submodules.html
他们听说你喜欢 git,所以他们把 git 放在你的 git 中,这样你就可以一边 git 一边 git 了。
you might be able to use submodules:
http://speirs.org/blog/2009/5/11/understanding-git-submodules.html
they heard you like git, so they put git inside your git, so you can git while you git.
我认为您正在寻找类似 git-submodule 的东西
I think you're looking for something like git-submodule