On Mon, Nov 10, 2008 at 12:33 AM, Brian Granger <[EMAIL PROTECTED]> wrote: > > Ondrej, > > My git clone has as its origin this: git://github.com/certik/sympy > > But, when I do git pull on master, it doesn't pick up any of the > recent changes to the main git repo. I wanted to get the recent > printer mods, and play with them. How would I go about dong this?
$ git clone git://git.sympy.org/sympy.git $ cd sympy $ git remote add ondrej git://github.com/certik/sympy.git To checkout my division3 branch, do: $ git checkout -b division3 $ git pull ondrej division3 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 -~----------~----~----~----~------~----~------~--~---
