将更改从本地存储库传播到另一个本地存储库
在同一台计算机上,用户 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让用户 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)".