On Sun, Jun 28, 2009 at 4:07 PM, David Joyner<[email protected]> wrote: > > On Sun, Jun 28, 2009 at 4:14 PM, Priit Laes<[email protected]> wrote: >> >> I have updated the PDE-separation branch again, it is now in >> 'pde-separate-v2'. >> >> In case you have sympy's sources already checked out: >> $ git remote add plaes git://github.com/plaes/sympy.git >> $ git checkout -b pde origin/pde-separate-v2 > > The examples below look really cool:-) I teach this kind of stuff > every semester so it will be very useful when it gets in the main > distribution of Sympy. > > I tried your commands and Ondrej's commands earlier in the thread (I also > had to do "sudo apt-get install git-core" and "sudo python setup.py install") > but got this: > > w...@hera:~/pythonfiles/sympy-files/sympy$ git checkout -b pde > origin/pde-separate-v2 > fatal: git checkout: branch pde already exists > > Should I somehow try to get back to the main branch then do your checkout? > I know nothing about git:-(
This seems like you already have a "pde" local branch, you can check this with "git branch", which lists all your local branches. In any case, just use a different name, like pde2: git checkout -b pde2 origin/pde-separate-v2 Ondrej --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sympy?hl=en -~----------~----~----~----~------~----~------~--~---
