Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found this article on using Git in Dropbox as a secondary repository. The problem when when I try to add the remote directory to my project and I get the following message:

git remote add file:///Users/me/Dropbox/Projects/Social-Linking dropbox
fatal: 'file:///Users/me/Dropbox/Projects/Social-Linking' is not a valid remote name

I followed the steps one step at a time and on a Mac.

share|improve this question
What command gave you that error? – R. Martinho Fernandes Apr 11 '11 at 17:26
I have updated the question. – Mike Wills Apr 11 '11 at 17:30

1 Answer

up vote 1 down vote accepted

You are probably doing

git remote add file:///Users/me/Dropbox/Projects/Social-Linking remotename

Where you should be doing

git remote add remotename file:///Users/me/Dropbox/Projects/Social-Linking
share|improve this answer
That would make sense. I figured the author didn't copy something right, but I just started with Git so I didn't know where I went wrong. I'll try that tonight when I get home. – Mike Wills Apr 11 '11 at 17:30
@Mike: First thing someone should have taught you: git has a built-in help system. git help remote shows the help for the remote command. – R. Martinho Fernandes Apr 11 '11 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.