<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Oct 27, 2013 at 9:42 PM, Neil Girdhar <span dir="ltr"><<a href="mailto:mistersheik@gmail.com" target="_blank">mistersheik@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Yeah, I realized that I missed that and figured it wouldn't matter since it was my own master and I don't plan on making other changes to numpy.  If you don't mind, how do I move my changelist into a branch?  I'm really worried I'm going to lose my changes.</blockquote>
</div><br>'master' is just another branch.  You can do:</div><div class="gmail_extra"><br></div><div class="gmail_extra">    git checkout -b new_branch_name</div><div class="gmail_extra"><br></div><div class="gmail_extra">
In your current repository to create a new branch pointing to where you are now (the master branch which you want to move)</div><div class="gmail_extra"><br></div><div class="gmail_extra">Chuck's instructions follow that:</div>
<div class="gmail_extra"><br></div><div class="gmail_extra">   git checkout master</div><div class="gmail_extra">   git reset --hard origin/master</div><div class="gmail_extra"><br></div><div class="gmail_extra">Some people advise that you just delete the 'master' branch on your local repository/forks.  This can simplify the process of accidentally committing to it, though it's easy to recover from.</div>
<div class="gmail_extra"><br></div><div class="gmail_extra">Cheers,</div><div class="gmail_extra">Aron</div></div>