如何将项目的新版本导入到我的 git 存储库中?
我的存储库看起来像这样。
v1 - A - B - C ...
其中提交 v1
代表 upstream-project-foo-0.9.8.tar.gz
的内容,提交 A、B ... 是我的修改。
目标是升级我的 upstream-project
副本并将提交 A、B、C ... 移植到其中。
如何将新版本的 upstream-project
tarball 作为另一个分支放入我的 git 存储库中?或者我应该考虑创建第二个 git 存储库?
My repository looks like this.
v1 - A - B - C ...
where the commit v1
represents the contents of upstream-project-foo-0.9.8.tar.gz
and the commits A, B ... are my modifications.
The goal is to upgrade my copy of upstream-project
and port the commits A, B, C ... to it.
How do I get a new version of the upstream-project
tarball into my git repository as another branch? Or should I consider making a second git repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 v1 创建一个新分支并在那里提取新版本。
然后,您可以将版本之间的更改合并到更新所在的主分支中。
您可能还想创建一个 C 分支(或任何最新版本)来合并更新,然后在完成后将第三个分支合并回您的主分支。
create a new branch from v1 and extract the new version there.
You can then merge the changes between versions into your main branch where your updates are.
You may also want to create a branch off of C (or whatever your latest version is) to merge the updates and then merge the third branch back into your master when you're done.