diff options
author | Job van der Voort <job@gitlab.com> | 2015-07-01 08:28:08 +0000 |
---|---|---|
committer | Job van der Voort <job@gitlab.com> | 2015-07-01 08:28:08 +0000 |
commit | 36ecc6d30555fc3117373e25164bbdd3c33b37e8 (patch) | |
tree | 78eded279ffbd86bbabbdb79c1b1a35e54115edb /doc/gitlab-basics/create-your-ssh-keys.md | |
parent | e934a62aeb67bbca565a77f8c5d19ebf1272a1bd (diff) | |
parent | e0e89858550683f18ae1844c87d7b6fa938b75fe (diff) | |
download | gitlab-ce-36ecc6d30555fc3117373e25164bbdd3c33b37e8.tar.gz |
Merge branch 'commandline' into 'master'
added new doc "command line commands"
Added new doc to GitLab Basics
See merge request !1880
Diffstat (limited to 'doc/gitlab-basics/create-your-ssh-keys.md')
-rw-r--r-- | doc/gitlab-basics/create-your-ssh-keys.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/gitlab-basics/create-your-ssh-keys.md b/doc/gitlab-basics/create-your-ssh-keys.md new file mode 100644 index 00000000000..2b6a1f2d808 --- /dev/null +++ b/doc/gitlab-basics/create-your-ssh-keys.md @@ -0,0 +1,37 @@ +# How to create your SSH Keys + +You need to connect your computer to your GitLab account through SSH Keys. They are unique for every computer that you link your GitLab account with. + +## Generate your SSH Key + +* Create an account on GitLab. Sign up and check your email for your confirmation link + +* After you confirm, go to [gitlab.com](https://about.gitlab.com/) and sign in to your account + +## Add your SSH Key + +* At the top right corner, click on "profile settings" + + + +* On the left side menu click on "SSH Keys" + + + +* Then click on the green button "Add SSH Key" + + + +* There, you should paste the SSH Key that your commandline will generate for you. Below you'll find the steps to generate it + + + +## To generate an SSH Key on your commandline + +* Go to your [commandline](start-using-git.md) and follow the [instructions](https://gitlab.com/help/ssh/README) to generate it + +* Copy the SSH Key that your commandline created and paste it on the "Key" box on the GitLab page. The title will be added automatically + + + +* Now, you'll be able to use Git over SSH, instead of Git over HTTP. |