Commit a33acd14 by Tom Laudeman

update

parent 840357a6
Create an ssh key specifically and only for gitlab, on the local (non-gitlab) machine:
```
ssh-keygen -t rsa -f gitlab
......@@ -17,6 +16,24 @@ EscapeChar none
Note that the key file name in the -f arg is "gitlab" which matches the IdentityFile line in the config file.
The default ssh-keygen directory is ~/.ssh/
Add the public key gitlab.pub to gitlab:
- cat ~/.ssh/gitlab.pub
- (copy the text of the public key into your clipboard)
- login to gitlab
- click "Profile settings" (icon of a person, upper right corner)
- click "SSH Keys" (left side nav bar)
- click green "Add SSH Key" button (upper right)
- enter a name for the key, this is human readable, not a file name
- paste the key into the "key" text box
- click "Add key"
You can test the function of the new SSH key:
```
> ssh -T git@gitlab.iath.virginia.edu
Welcome to GitLab, Tom Laudeman!
```
Create the repo on gitlab. (log in, create it in either your space or snac's space, and then copy the URL for
cloning via ssh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment