josanabr, It sounds like, as Cynthia points out, you're pushing into a repo with a working copy. That's generally a bad idea. You should either only pull between the repos, for example make changes in repo A, log into computer B and pull from A, make changes on B, log over to A and pull from B... or better yet, push and pull into a repo specifically set up to only host (a bare repo). I hear github provides easy repo hosting *innocent whistle*
--tek On Tue, Oct 14, 2008 at 2:51 PM, Cynthia Kiser <[EMAIL PROTECTED]> wrote: > > Quoting josanabr <[EMAIL PROTECTED]>: > > Everything looks ok. Now, in komolongma, I executed > > > > git commit -a -m "xxx" > > git pull > > > > and the process fails > > > > [EMAIL PROTECTED] gridjobs]$ git pull > > fatal: 'origin': unable to chdir or not a git archive > > fatal: The remote end hung up unexpectedly > > > > What did I do wrong? Thanks so much for your help... > > First, this looks like a general git question and this is a list for > users of github. > > But wrt your question, on komolongma, what is configured as the > origin? (look in .git/config under [remote "origin"]) > > And from your description, you pushed from your laptop to komolongma - > and then you edited files there?! I think the advice is you really > should only push to bare repositories - not to working git > checkouts. > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" 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/github?hl=en -~----------~----~----~----~------~----~------~--~---
