git - 如何从其他存储库镜像文件
我有一个可能无法解决的问题,但无论如何我都会问。 我确实有一个 git 存储库,并且我需要从另一个文件镜像一个文件。 我的存储库中需要有一个 .xsd 文件。
这还不是最大的问题。我想将该文件(例如在 git fetch 上)更新为包含 .xsd 文件的存储库上最后一个标签的版本。
非常感谢任何帮助
I've a problem which probably can't be solved, but I'll ask anyway.
I do have one git repository, and I need one file to be mirrored from another one.
There is one .xsd file in the repo I need to have in my repository.
That's not the biggest problem. I want to update that file (on git fetch for instance), to the version of the last tag on the repository containing .xsd file.
Any help is really appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 post-checkout (或更合适的)钩子将文件的最新版本替换为您需要的任何版本,但随后您将得到一个未提交的文件。如果您需要的话,您可以将其提交到钩子中(或者如果没有跟踪它,则不会有问题,如果没有看到问题的进一步细节,很难说)。
You can use
post-checkout
(or maybe some more appropriate) hook to replace the latest version of the file with any version you need, but then you will have an uncommitted file. You can commit it in the hook if you need that though (or if it is not tracked, there will be no problems, it's hard to say without seeing further details of the question).