如何在自己的计算机上设置自己的本地 Git 服务器?
我想在使用push命令时使用自己的服务器(即127.0.0.1)。我怎样才能建立自己的服务器?
我正在使用 MacOS X。
I want to use my own server (i.e. 127.0.0.1) when I use the push command. How can I set up my own server?
I'm using MacOS X.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要服务器来推送到本地存储库。您可以仅使用 git-push 手册:
You don't need a server to push to a local repository. You can just use a local file url as indicated in the git-push manual:
Mat 已经为常见情况提供了正确的答案,但如果您想在本地测试网络提交,最简单的方法是在您的计算机上设置 ssh 守护进程(如果 OSX 尚未安装)默认情况下 - 不确定)。
设置 ssh 后,您可以通过设置远程来推送到本地计算机上的任何存储库:
请记住,用于推送(远程或本地)的存储库通常应使用 git init 进行初始化 --裸露;或者至少没有任何您打算在工作树中推送的分支。
Mat already provided a correct answer for the common case, but if you want to test networked commits locally, the easiest way is to set up an ssh daemon on your machine (if OSX doesn't already installs one by default - not sure).
Once ssh is set up, you can push to any repository on your local machine by setting up a remote:
Keep in mind that repositories that are intended for pushing to (remotely or locally) should generally be initialized with
git init --bare
; or at least not have any branch you intend to push checked out in the working tree.