Takes about 2 minutes
$ npm install git+ssh://[email protected]/username/my-new-project.git#master
-
Open Git Bash.
-
Paste the text below, substituting in your GitHub email address.
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
## when prompt, save the key as /home/username/.ssh/reponame_rsa
-
Copy the content of the generated public key (~/.reponame_rsa.pub)
-
Visit your repo > Settings > Deploy Keys > Add Deploy Key
-
Paste the copied content and named the key as
CI Deploy Key
-
Login to CircleCI
-
Go to Project > Project Settings > SSH Permissions > Add SSH Keys
-
For Hostname, enter
github.com
-
For Private Key, paste from the content of
~/.ssh/reponame_rsa
(YES, the PRIVATE KEY)
Examples
steps:
- add_ssh_keys:
fingerprints:
- "b7:35:a6:4e:9b:0d:6d:d4:78:1e:9a:97:2a:66:6b:be"
OR
steps:
# adds default ssh key for this project
- add_ssh_keys
Thank you!!. It's making my day. Very useful