<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Dec 3, 2020 at 9:51 AM Mike Edwards via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Dec 2, 2020 at 5:31 PM Paul C. Anagnostopoulos via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Could you include instructions for us not-so-git-savvy folks that explain what we have to do locally? I know I have to rename my master branch. Do I have to do anything else?<br>
<br></blockquote><div><br></div><div>Sorry Paul, my apologies for not responding to you earlier.  I know there are many different ways in git to accomplish the same goal.  This is the method I plan on using to update my local working copy of the repository:</div><div><br></div><div>In my local llvm-project directory:</div><div>$ git fetch origin</div><div>$ git checkout origin/main -b main</div><div><br></div><div>When you are ready to remove your local 'master' branch run:</div><div>$ git branch -d master</div><div><br></div><div>If someone else reading this would please peer review this,  I would appreciate the assistance.  If I can get a LGTM from someone I will add these steps to the webpage as well.</div></div></div></blockquote><div><br></div><div>This should work, after you cherry-pick whatever is left in the master branch. To carry-over the current local master branch "as-is", you can also just rename the master branch locally and update the tracking:</div><div><br></div><div># if not already on the master branch</div><div>$ git checkout master <br></div><div># Rename the branch locally</div><div>$ git branch -m main</div><div># Update the tracking so that `git pull`/`git push` lookup the remote main</div><div>$ git branch -u origin/main</div><div><br></div><div>-- </div><div>Mehdi</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div><br></div><div><br></div><div>Thanks,</div><div>Mike<br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div></div></div></div>