如何在Linux中将git存储库从一台机器克隆到另一台机器?
我想从另一台计算机克隆 git 存储库,但它给了我一条消息:
你在服务器上运行了 git update-server-info 吗?
我应该做什么?有人可以帮助我吗?
谢谢
I want to clone git repository from another computer but it gives me a message of:
did you run git update-server-info on the server?
what should I do? Anyone can help me?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Jefromi 建议的那样,使用
(将您的用户名和“myserver”更新为真实的)
As Jefromi suggested, use
(update your username and "myserver" to real ones)
您可能正在通过 HTTP 进行克隆,这是一个愚蠢的协议,需要运行 git update-server-info 。尝试按照消息提示在服务器上运行 git update-server-info 并重新克隆。
It maybe that you are cloning over HTTP which is a dumb protocol and requires
git update-server-info
to be run. Try runninggit update-server-info
on the server as the message suggests and re-clone.