<div dir="ltr">You can do that with:<div><br></div><div>git fetch --all</div><div>git review -d <PATCH_NUM></div><div>git rebase master</div><div><br></div><div>Best,</div><div>-jay</div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Mon, May 12, 2014 at 1:03 PM, Lowery, Mathew <span dir="ltr"><<a href="mailto:mlowery@ebay.com" target="_blank">mlowery@ebay.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">




<div style="word-wrap:break-word">
<div style="color:rgb(0,0,0);font-family:Calibri,sans-serif;font-size:14px">
Gerrit supplies the following "shortcuts" for any change (in the "new screen", there's a Download drop down in the top right or for the "old screen", it's just under the Patch Set heading):</div>

<div style="color:rgb(0,0,0);font-family:Calibri,sans-serif;font-size:14px">
<br>
</div>
<div style="color:rgb(0,0,0)"><span style="font-size:12px"><font face="Monaco">Checkout<span style="white-space:pre-wrap">
</span>git fetch <a href="https://review.openstack.org/openstack/trove" target="_blank">https://review.openstack.org/openstack/trove</a> refs/changes/09/88709/11 && git checkout FETCH_HEAD</font></span></div>
<div style="color:rgb(0,0,0)"><span style="font-size:12px"><font face="Monaco">Cherry-Pick<span style="white-space:pre-wrap">
</span>git fetch <a href="https://review.openstack.org/openstack/trove" target="_blank">https://review.openstack.org/openstack/trove</a> refs/changes/09/88709/11 && git cherry-pick FETCH_HEAD</font></span></div>
<div style="color:rgb(0,0,0)"><span style="font-size:12px"><font face="Monaco">Format-Patch<span style="white-space:pre-wrap">
</span>git fetch <a href="https://review.openstack.org/openstack/trove" target="_blank">https://review.openstack.org/openstack/trove</a> refs/changes/09/88709/11 && git format-patch -1 --stdout FETCH_HEAD</font></span></div>

<div style="color:rgb(0,0,0)"><span style="font-size:12px"><font face="Monaco">Pull<span style="white-space:pre-wrap">
</span>git pull <a href="https://review.openstack.org/openstack/trove" target="_blank">https://review.openstack.org/openstack/trove</a> refs/changes/09/88709/11</font></span></div>
<div><span style="font-size:12px"><font face="Monaco">Patch-File<span style="white-space:pre-wrap">
</span>629016b.diff.base64 </font></span><font face="Monaco"><span style="font-size:12px">| 629016b.diff.zip</span></font></div>
<div><br>
</div>
<div>I have questions regarding these shortcuts, specifically in the context of Gerrit dependencies (i.e. one Gerrit change depends on another Gerrit change) Let's say my ultimate goal is to get the patch set including its dependencies and apply those to the
 latest master because I want to do some manual testing. Below is my understanding of the existing options (feel free to correct any incorrect statements):</div>
<ul>
<li>Checkout grabs the original sequence of commits as they were at submit time. In other words, all the parent commits are the same as when the patch set was submitted. The master and the parent dependencies could have all advanced or changed.</li>
<li>Cherry-pick applies the diff introduced by the named patch set alone. Parent dependencies are not involved.\</li><li>Format-patch: I don't know when to use this.</li><li>Pull: By default this will merge the two branches (and create a merge commit). However, I have pulls configured to always rebase. When the pull does a rebase, the patch set and its dependencies do not appear as the most recent commits which I find not ideal.</li>
<li>Patch-File: Isn't this a portable cherry-pick? How does it relate to format-patch?</li></ul>
<div>So that summarizes my understanding of the current shortcuts.</div>
<div><br>
</div>
<div>What (I think) I want (that is not provided) is this:</div>
<div><br>
</div>
<div><span style="font-family:Monaco;font-size:12px">git fetch </span><span style="font-family:Monaco;font-size:12px"><a href="https://review.openstack.org/openstack/trove" target="_blank">https://review.openstack.org/openstack/trove</a> refs/changes/09/88709/11</span><span style="font-family:Monaco;font-size:12px"> &&
 git checkout FETCH_HEAD && git fetch </span><span style="font-family:Monaco;font-size:12px"><a href="https://review.openstack.org/openstack/trove" target="_blank">https://review.openstack.org/openstack/trove</a> master && git rebase FETCH_HEAD</span></div>

<div><br>
</div>
<div>In other words, fetch the patch set with dependencies then check it out (detached head). Fetch the latest master then rebase the patch set (and dependencies) on the latest master. End result: latest master with patch set and all dependencies as the most
 recent commits.</div>
<div><br>
</div>
<div>Am I missing something fundamental or would this be a useful shortcut to have?</div>
<div><br>
</div>
<div>Thanks for any help,</div>
<div>Mat</div>
</div>

<br>_______________________________________________<br>
OpenStack-dev mailing list<br>
<a href="mailto:OpenStack-dev@lists.openstack.org">OpenStack-dev@lists.openstack.org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev</a><br>
<br></blockquote></div><br></div>