【发布时间】:2012-11-19 18:05:13
【问题描述】:
我在 gerrit 上有两个补丁,我想让未合并的补丁依赖于合并的补丁。
两者都已上传到 gerrit。
我该怎么做?有可能吗?
我可以通过 gerrit 来实现吗?不是通过git 和樱桃采摘。
【问题讨论】:
标签: linux git dependencies patch gerrit
我在 gerrit 上有两个补丁,我想让未合并的补丁依赖于合并的补丁。
两者都已上传到 gerrit。
我该怎么做?有可能吗?
我可以通过 gerrit 来实现吗?不是通过git 和樱桃采摘。
【问题讨论】:
标签: linux git dependencies patch gerrit
Gerrit 中的依赖关系只是 Git 树图的一种表示。因此,要使变更 B 依赖于变更 A,B 必须以 A 作为其父项。
在您的情况下,您在两个不同的存储库中有两个更改。 Gerrit 目前不支持跨存储库依赖项。但是,它是commonly-requested feature,刚刚在上周末的 Gerrit 用户大会上进行了讨论。希望未来版本的 Gerrit 会添加对跨存储库依赖项的支持。
【讨论】:
使用来自here的git命令:
git fetch --all # Make sure we have latest info from the repository
git review -d 1234 # Gerrit change number of the change you want as dependency ("parent")
git checkout -b bug/1234 # Creates a new branch, with the current branch (the dependency) as parent
# Edit files: make your changes
git add someFile.php some/other/file.js
git commit # Commit your patch
git log -n5 --decorate --pretty=oneline # Verify that the last 5 entries of the log now start with:
# * (HEAD, bug/1234) your change
# * (review/john/700) the dependency
# * (gerrit/master)
git push gerrit HEAD:refs/for/master # Use this instead of `git review`
git branch # Take note of the review/* branch that was created for this, it has an "*" in front of it
git checkout bug/1234 # Check out the local topic branch of your change
git rebase review/john/7000 # The branch name of the gerrit change we checked out earlier
# Resolve conflicts if needed,
# - use "git status" to see the files that need resolution
# - after fixing it in your editor, "git add filename" for each of the fixed files
git commit --amend -c HEAD # Re-commit your patch replacing the one with the wrong parent
git log -n5 --decorate --pretty=oneline # Verify that the last 5 entries of the log now start with:
# * (HEAD, bug/1234) your change
# * (review/john/700) the dependency
# * (gerrit/master)
git push gerrit HEAD:refs/for/master # Use this instead of `git review`
【讨论】: