如何在自己的计算机上设置自己的本地 Git 服务器?

发布于 2024-10-27 04:44:48 字数 77 浏览 1 评论 0原文

我想在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

咆哮 2024-11-03 04:44:48

您不需要服务器来推送到本地存储库。您可以仅使用 git-push 手册:

对于本地存储库,也受 git 原生支持,可以使用以下语法:

  • /path/to/repo.git/
  • file:// /path/to/repo.git/

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:

For local repositories, also supported by git natively, the following syntaxes may be used:

  • /path/to/repo.git/
  • file:///path/to/repo.git/
木格 2024-11-03 04:44:48

Mat 已经为常见情况提供了正确的答案,但如果您想在本地测试网络提交,最简单的方法是在您的计算机上设置 ssh 守护进程(如果 OSX 尚未安装)默认情况下 - 不确定)。

设置 ssh 后,您可以通过设置远程来推送到本地计算机上的任何存储库:

  git remote add repo-name [email protected]:/path/to/your/repo

  git push repo-name branch-name

请记住,用于推送(远程或本地)的存储库通常应使用 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:

  git remote add repo-name [email protected]:/path/to/your/repo

  git push repo-name branch-name

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文