Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
81bfa925
Commit
81bfa925
authored
Dec 09, 2016
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor SSH keys docs
[ci skip]
parent
1038d376
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
65 deletions
+70
-65
doc/ssh/README.md
doc/ssh/README.md
+70
-65
No files found.
doc/ssh/README.md
View file @
81bfa925
...
@@ -5,7 +5,7 @@ but you can also share or "push" your changes to other servers.
...
@@ -5,7 +5,7 @@ but you can also share or "push" your changes to other servers.
Before you can push your changes to a GitLab server
Before you can push your changes to a GitLab server
you need a secure communication channel for sharing information.
you need a secure communication channel for sharing information.
GitLab uses Public-key or asymmetric cryptography
GitLab uses Public-key or asymmetric cryptography
which
"encrypts"
a communication channel by locking it with your "private key"
which
encrypts
a communication channel by locking it with your "private key"
and allows trusted parties to unlock it with your "public key".
and allows trusted parties to unlock it with your "public key".
If someone does not have your public key they cannot access the unencrypted message.
If someone does not have your public key they cannot access the unencrypted message.
...
@@ -16,10 +16,13 @@ at the default location by opening a shell, or Command Prompt on Windows,
...
@@ -16,10 +16,13 @@ at the default location by opening a shell, or Command Prompt on Windows,
and running the following command:
and running the following command:
**Windows Command Prompt:**
**Windows Command Prompt:**
```
bash
```
bash
type
%userprofile%
\.
ssh
\i
d_rsa.pub
type
%userprofile%
\.
ssh
\i
d_rsa.pub
```
```
**GNU/Linux/Mac/PowerShell:**
**GNU/Linux / macOS / PowerShell:**
```
bash
```
bash
cat
~/.ssh/id_rsa.pub
cat
~/.ssh/id_rsa.pub
```
```
...
@@ -27,78 +30,82 @@ cat ~/.ssh/id_rsa.pub
...
@@ -27,78 +30,82 @@ cat ~/.ssh/id_rsa.pub
If you see a string starting with
`ssh-rsa`
you already have an SSH key pair
If you see a string starting with
`ssh-rsa`
you already have an SSH key pair
and you can skip the next step
**Generating a new SSH key pair**
and you can skip the next step
**Generating a new SSH key pair**
and continue onto
**Copying your public SSH key to the clipboard**
.
and continue onto
**Copying your public SSH key to the clipboard**
.
If you don't see the string or would like to generate a SSH key pair with a
custom name
If you don't see the string or would like to generate a SSH key pair with a
continue onto the next step.
c
ustom name c
ontinue onto the next step.
## Generating a new SSH key pair
## Generating a new SSH key pair
To generate a new SSH key, use the following command:
1.
To generate a new SSH key, use the following command:
**GNU/Linux/Mac/PowerShell:**
**GNU/Linux / macOS:**
```
bash
ssh-keygen
-t
rsa
-C
"
$your_email
"
```
**Windows:**
```bash
On Windows you will need to download
ssh-keygen -t rsa -C "GitLab" -b 4096
[
PuttyGen
](
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
)
```
and follow this documentation
[
article
](
https://the.earth.li/~sgtatham/putty/0.67/htmldoc/Chapter8.html#pubkey-puttygen
)
to generate a SSH key pair.
### Provide a file path
**Windows:**
You will be prompted to input a file path to save your key pair to.
On Windows you will need to download
[PuttyGen](http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html)
and follow this [documentation article][winputty] to generate a SSH key pair.
If you don't already have an SSH key pair use the suggested path by pressing enter.
1.
Next, you will be prompted to input a file path to save your key pair to.
Using the suggested path will allow your SSH client
to automatically use the key pair with no additional configuration.
If you already have a key pair with the suggested file path you will need to input a new file path
If you don't already have an SSH key pair use the suggested path by pressing
and declare what host this key pair will be used for in your
`.ssh/config`
file,
enter. Using the suggested path will allow your SSH client
see
**Working with non-default SSH key pair paths**
for more inform
ation.
to automatically use the key pair with no additional configur
ation.
### Provide a password
If you already have a key pair with the suggested file path, you will need
to input a new file path and declare what host this key pair will be used
for in your `.ssh/config` file, see **Working with non-default SSH key pair paths**
for more information.
Once you have input a file path you will be prompted to input a password to secure your SSH key pair.
1.
Once you have input a file path you will be prompted to input a password to
Note: It is a best practice to use a password for an SSH key pair,
secure your SSH key pair. It is a best practice to use a password for an SSH
but it is not required and you can skip creating a password by pressing enter.
key pair, but it is not required and you can skip creating a password by
pressing enter.
If you want to change the password of your key, you can use the following command:
>**Note:**
`ssh-keygen -p <keyname>`
If you want to change the password of your key, you can use `ssh-keygen -p <keyname>`.
## Copying your public SSH key to the clipboard
1.
The next step is to copy the public key as we will need it afterwards.
To copy your public key to the clipboard, use the appropriate code for you operating system below:
To copy your public key to the clipboard, use the appropriate code for your
operating system below:
**Windows Command Line:**
**macOS:**
```
bash
type
%userprofile%
\.
ssh
\i
d_rsa.pub | clip
```
**Windows PowerShell:**
```bash
```
bash
pbcopy < ~/.ssh/id_rsa.pub
cat
~/.ssh/id_rsa.pub | clip
```
```
**Mac:**
**GNU/Linux (requires the xclip package):**
```
bash
pbcopy < ~/.ssh/id_rsa.pub
```
**GNU/Linux (requires xclip):**
```bash
```
bash
xclip -sel clip < ~/.ssh/id_rsa.pub
xclip
-sel
clip < ~/.ssh/id_rsa.pub
```
```
**Windows Command Line:**
```bash
type %userprofile%\.ssh\id_rsa.pub | clip
```
## Adding your public SSH key to GitLab
**Windows PowerShell:**
Navigate to the 'SSH Keys' tab in you 'Profile Settings'.
```bash
Paste your key in the 'Key' section and give it a relevant 'Title'.
cat ~/.ssh/id_rsa.pub | clip
Use an identifiable title like 'Work Laptop - Windows 7' or 'Home MacBook Pro 15'.
```
If you manually copied your public SSH key make sure you copied the entire key
1.
The final step is to add your public SSH key to GitLab.
starting with
`ssh-rsa`
and ending with your email.
Navigate to the 'SSH Keys' tab in you 'Profile Settings'.
Paste your key in the 'Key' section and give it a relevant 'Title'.
Use an identifiable title like 'Work Laptop - Windows 7' or
'Home MacBook Pro 15'.
If you manually copied your public SSH key make sure you copied the entire
key starting with `ssh-rsa` and ending with your email.
## Working with non-default SSH key pair paths
## Working with non-default SSH key pair paths
...
@@ -113,21 +120,17 @@ Below are two example host configurations using their own key:
...
@@ -113,21 +120,17 @@ Below are two example host configurations using their own key:
# GitLab.com server
# GitLab.com server
Host gitlab.com
Host gitlab.com
RSAAuthentication yes
RSAAuthentication yes
IdentityFile ~/folder1/private-key-filename
IdentityFile ~/.ssh/config/private-key-filename-01
User mygitlabusername
# Private GitLab server
# Private GitLab server
Host gitlab.company.com
Host gitlab.company.com
RSAAuthentication yes
RSAAuthentication yes
IdentityFile ~/
folder2
/private-key-filename
IdentityFile ~/
.ssh/config
/private-key-filename
```
```
Note in the gitlab.com example above a username was specified
Due to the wide variety of SSH clients and their very large number of
to override the default chosen by OpenSSH (your local username).
configuration options, further explanation of these topics is beyond the scope
This is only required if your local and remote usernames differ.
of this document.
Due to the wide variety of SSH clients and their very large number of configuration options,
further explanation of these topics is beyond the scope of this document.
Public SSH keys need to be unique, as they will bind to your account.
Public SSH keys need to be unique, as they will bind to your account.
Your SSH key is the only identifier you'll have when pushing code via SSH.
Your SSH key is the only identifier you'll have when pushing code via SSH.
...
@@ -152,13 +155,15 @@ If you want to add the same key to another project, please enable it in the
...
@@ -152,13 +155,15 @@ If you want to add the same key to another project, please enable it in the
list that says 'Deploy keys from projects available to you'. All the deploy
list that says 'Deploy keys from projects available to you'. All the deploy
keys of all the projects you have access to are available. This project
keys of all the projects you have access to are available. This project
access can happen through being a direct member of the project, or through
access can happen through being a direct member of the project, or through
a group. See
`def accessible_deploy_keys`
in
`app/models/user.rb`
for more
a group.
information.
Deploy keys can be shared between projects, you just need to add them to each project.
Deploy keys can be shared between projects, you just need to add them to each
project.
## Applications
## Applications
### Eclipse
### Eclipse
How to add your ssh key to Eclipse: https://wiki.eclipse.org/EGit/User_Guide#Eclipse_SSH_Configuration
How to add your ssh key to Eclipse: https://wiki.eclipse.org/EGit/User_Guide#Eclipse_SSH_Configuration
[
winputty
]:
https://the.earth.li/~sgtatham/putty/0.67/htmldoc/Chapter8.html#pubkey-puttygen
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment