ixc / ixc-project-template

Bare-bones skeleton project template, for use with the `django-admin.py startproject` command.
1 stars 0 forks source link

Documentation error #6

Closed markfinger closed 9 years ago

markfinger commented 9 years ago

The docs state to add the remote as git remote add origin git@github.com/ixc/<project>.git

but git threw up the following

fatal: 'git@github.com/ixc/<project>.git' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

I actually had to specify it as git remote add origin git@github.com:ixc/<project>.git. The only difference seems to be the colon, presumably suggesting SSH over HTTPS.

$ git --version
git version 2.2.1
mrmachine commented 9 years ago

Good catch. Thanks!