将更改从本地存储库传播到另一个本地存储库

发布于 2024-10-26 09:20:17 字数 75 浏览 0 评论 0原文

在同一台计算机上,用户 A 拥有存储库,用户 B 拥有该存储库的克隆。如何将用户 A 的更改传播到用户 B 的存储库(考虑到用户权限)?

On the same machine, user A owns a repository and user B owns a clone of the repository. How do I propagate user A's changes to user B's repository (taking into consideration user permissions)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

愚人国度 2024-11-02 09:20:17

让用户 A 使用“git commit”提交更改,然后让用户 B 执行“git pull”。由于 B 存储库是 A 的克隆,因此您可以使用自动生成的远程别名“origin”来为存储库 A 的位置别名:“git pull origin(分支名称)”。

Have user A use "git commit" to commit the changes, then have user B do a "git pull". Since the B repo is a clone of A, you can use the auto-generated remote alias "origin" that aliases repo A's location: "git pull origin (branch name)".

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