Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#22457 closed Bug (fixed)

Quickstart git command Error Without git Setup

Reported by: jyeh Owned by: jyeh
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Link https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/

	$ git clone git@github.com:django/django.git django-repo
	Cloning into 'django-repo'...
	The authenticity of host 'github.com (192.30.252.130)' can't be established.
	RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
	Are you sure you want to continue connecting (yes/no)? yes
	Warning: Permanently added 'github.com,192.30.252.130' (RSA) to the list of known hosts.
	Permission denied (publickey).
	fatal: Could not read from remote repository.
	
	Please make sure you have the correct access rights
	and the repository exists.

The git command expects a git set-up, user id and public key before allowing to clone it.

Change History (6)

comment:1 by Baptiste Mispelon, 10 years ago

Triage Stage: UnreviewedAccepted

comment:2 by jyeh, 10 years ago

Has patch: set

comment:3 by Baptiste Mispelon <bmispelon@…>, 10 years ago

Resolution: fixed
Status: newclosed

In 28102991172ab931d030412275f926c1b05c688d:

Fixed #22457 -- Fixed contributing guide w/o github set-up

The published commnand was not working when the user did not have
the git client set-up with the public-key. Changed the contributing
guide to clone it from https instead.

comment:4 by Baptiste Mispelon <bmispelon@…>, 10 years ago

In ec2d456df8a56a3000b991adcd5ce3aede974492:

[1.5.x] Fixed #22457 -- Fixed contributing guide w/o github set-up

The published commnand was not working when the user did not have
the git client set-up with the public-key. Changed the contributing
guide to clone it from https instead.

Backport of 28102991172ab931d030412275f926c1b05c688d from master

comment:5 by Baptiste Mispelon <bmispelon@…>, 10 years ago

In 82803611eb1ca2ec8f4ea8569d4bf4abbd91cdb2:

[1.6.x] Fixed #22457 -- Fixed contributing guide w/o github set-up

The published commnand was not working when the user did not have
the git client set-up with the public-key. Changed the contributing
guide to clone it from https instead.

Backport of 28102991172ab931d030412275f926c1b05c688d from master.

comment:6 by Baptiste Mispelon <bmispelon@…>, 10 years ago

In fcbcdf72d60ccfd808187c3322457decc927712c:

[1.7.x] Fixed #22457 -- Fixed contributing guide w/o github set-up

The published commnand was not working when the user did not have
the git client set-up with the public-key. Changed the contributing
guide to clone it from https instead.

Backport of 28102991172ab931d030412275f926c1b05c688d from master.

Note: See TracTickets for help on using tickets.
Back to Top