如何不让 GitHub 上的一名团队成员的拉取请求覆盖我自己的 CSS 文件?
目前,我正在 GH 上与三名团队成员一起开发一个 PHP 项目。我们拆分了任务,但得出的结论是,当贡献者 1 对一个屏幕进行编码并在我们的 CSS 文件中对其进行样式设置时,当贡献者 2 将自己的 CSS 文件推送到我们的主分支时,这一切都将丢失。
有谁知道如何防止这种情况发生的良好工作流程?
我们当前的工作流程:
- C1创建了一个项目并添加了C2和C2。 C3 作为贡献者。
- C2 和 C3 分叉了该项目
- 每个人都将其克隆到他们的 VS Code 中并创建了一个本地分支。
- 完成工作后,我们提交并合并到我们自己的主分支。
- 我们向主项目(来自 C1 的存储库,其中所有内容都应连接)创建拉取请求。
Currently, I'm working on a PHP project with three team members on GH. We split up tasks, but came to the conclusion that when contributor1 codes one screen and styles it in our CSS file, this will all be lost when contributor2 would push their own CSS file onto our main branch.
Does anyone know a good workflow on how to prevent this from happening?
Our current workflow:
- C1 has created a project and added C2 & C3 as contributors.
- C2 and C3 forked the project
- Everyone cloned it into their VS Code and created a local side branch.
- After done working, we commit and merge to our own main branch.
- We create pull requests to the main project (repository from C1 where everything should be connected).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 C2 和 C3 分叉该项目,他们应该向其本地克隆添加一个额外的远程:
然后,在向主项目发出每个拉取请求之前
这个想法是确保本地代码仍然可以使用(并考虑)最新提交来自原始存储库。
每个 git push --force 都会更新正在进行的 PR。
If C2 and C3 fork the project, they should add an additional remote to their local clone:
Then, before each pull request to the main project
The idea is to make sure the local code still work with (and take into account) the latest commits from the original repository.
Each
git push --force
will update the PR in progress.