summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ssh-config.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/ssh-config.md b/ssh-config.md
index 9fa91e5..508ff05 100644
--- a/ssh-config.md
+++ b/ssh-config.md
@@ -83,7 +83,22 @@ then the output matches /^exolobe\d$/
## git.liw.fi access
+git.liw.fi runs Gitano, which has a handy whoami command.
+
~~~scenario
when I run ssh git@git.liw.fi whoami
then the output matches /User name:/
~~~
+
+## gitlab.com access
+
+I have a personal gitlab.com account. I have a subplot repository
+there.
+
+NOTE: This scenario only checks that I can clone from there over ssh,
+not that do it with my personal ssh key.
+
+~~~scenario
+when I run git clone ssh://git@gitlab.com/larswirzenius/subplot.git
+then the directory subplot exists
+~~~