On Sat, Sep 07, 2013 at 10:13:01AM +0200, Saullo Castro wrote: > I tried to clone�[1]https://github.com/sympy/sympy/pull/2431�but this is > not merged yet. How can I clone from this pull request in order to work in > it?
Clone sympy first. Then, add remote repository you needed: git remote add github-somenick [email protected]:somenick/sympy.git git fetch github-somenick and check out the branch you want to work on: git checkout -b you-name-it github-somenick/somebranch PS: Inspired by: https://github.com/sympy/sympy/wiki/Development-workflow#wiki-cloning-sympy -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
