On Mon, Oct 18, 2010 at 7:25 PM, marcolo <[email protected]> wrote:
> Hi, > I want to have a modifiable git repository on my computer (not a read- > only clone), but the command line given in git doesn't. When I > execute : > > git remote add origin [email protected]:~marcdurufle/seldon/ > marcdurufles-mallet-seldon-src.git > The `git remote add` command is intended to be entered inside an existing Git repository, for the initial "checkout" you should use `git clone` instead, ie `git clone [email protected]: ~marcdurufle/seldon/marcdurufles-mallet-seldon-src.git` If you intended to create an empty repository and add the remote to this one, you should first create the directory, then enter `git init` - after which you can use `git remote add ...` Cheers, - Marius -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected]
