A few things here: - As git correctly points out, [email protected]/smichr/sympy.git is not a valid URL. A more correct URL is [email protected]:smichr/sympy.git, but that is also incorrect in this situation because that is Chris's private ssh URL, which only he can use. What you should do is go to https://github.com/smichr/sympy and copy the clone URL. Either HTTP or Git read-only will do. In this case, you get https://github.com/smichr/sympy. Then the command is git remote add smichr https://github.com/smichr/sympy
- You don't need to clone SymPy again (ever). Just cd into the clone you already have and run the commands there. - While it will work, git fetch smichr is better than git pull smichr to download changes from a remote. Aaron Meurer On Aug 25, 2012, at 10:08 AM, David Joyner <[email protected]> wrote: > On Sat, Aug 25, 2012 at 10:56 AM, Chris Smith <[email protected]> wrote: >>>> git add remote smichr [email protected]/smichr/sympy.git >> >> >> Sorry. Make that git remote add smichr [email protected]/smichr/sympy.git > > > git clone git://github.com/sympy/sympy.git > cd sympy > git remote add smichr [email protected]/smichr/sympy.git > git pull smichr > > returns > > fatal: '[email protected]/smichr/sympy.git' does not appear to be a > git repository > fatal: The remote end hung up unexpectedly > > > > > >> >> -- >> 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. >> > > -- > 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. > -- 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.
