<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 20, 2013 at 2:01 PM, Paul Mullowney <span dir="ltr"><<a href="mailto:paulm@txcorp.com" target="_blank">paulm@txcorp.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div bgcolor="#FFFFFF" text="#000000">Ok. Being a git novice, I don't know how to pull from my branch.  I
    tried:<br>
    <br>
    git clone <a href="https://bitbucket.org/petsc/petsc.git/" target="_blank">https://bitbucket.org/petsc/petsc.git/</a><br>
    cd petsc<br>
    git checkout -b pm/aijcusparse-icc<br></div></blockquote><div><br></div><div style>This created a new branch, but you want to check out an existing branch.</div><div style><br></div><div style>To get yourself back in a "clean" state, use</div>
<div style><br></div><div style>$ git checkout master</div><div style>$ git branch -d pm/aijcusparse-icc</div><div style><br></div><div style>Then checkout the existing branch using</div><div style><br></div><div style>$ git checkout pm/aijcusparse-icc</div>
<div style><br></div><div style><br></div><div style>Or, if you want to be more explicit,</div><div style><br></div><div style>$ git checkout -b pm/aijcusparse-icc origin/pm/aijcusparse-icc</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000">
    <br>
    However, I don't see the changes which include the ICC
    functionality. What am I doing wrong? I also tried the following
    which didn't work.<br>
    git checkout -b remotes/origin/pm/aijcusparse-icc<br>
    <br>
    What am I doing wrong?</div></blockquote></div><br><br></div></div>