On Fri, Jun 4, 2010 at 11:12 AM, Brad King <span dir="ltr"><<a href="mailto:brad.king@kitware.com">brad.king@kitware.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<div class="im">James Bigler wrote:<br>
> CMake devs, could you comment on my last two questions?<br>
><br>
> * Question: Do I need to push this change to "next"?<br>
><br>
> * Question: If this is a bug fix, will the release manager push it into<br>
> 2.8.2 at some point?<br>
<br>
</div>Yes to both.<br>
<br>
Please start the topic from master, commit, and then merge into next.<br>
Don't base the work on next or we won't be able to merge it.<br>
<br>
Detailed workflow documentation is here:<br>
<div class="im"><br>
  <a href="http://public.kitware.com/Wiki/Git/Workflow/Topic" target="_blank">http://public.kitware.com/Wiki/Git/Workflow/Topic</a><br>
<br>
</div>Thanks,<br>
<font color="#888888">-Brad<br>
</font></blockquote></div><br>OK, so this is what I ended up doing:<br><br>  516  git branch topics/FixCudaVersionAfterFirstRun 0d30e3fe91717f519722a71470a5180c13818a2a<br>  518  git checkout -b next origin/next<br>  520  git pull<br>

  526  git merge topics/FixCudaVersionAfterFirstRun<br>  528  git push  -> failed with non-fast-forward<br>  529  git reset --hard origin/next<br>  530  git merge topics/FixCudaVersionAfterFirstRun<br>  534  git push -> failed with non-fast-forward again.  I reread this thread and did the following<br>

  535  git checkout master<br>  538  git reset --hard origin/master<br>  541  git checkout next<br>  543  git push -> Succeeded<br><br>Now, according to the wiki, I should also push this change into master, right?<br>
<br>
James<br><br>