From 7840575dd01a065eba7deaa4d3c51ea3b2029ae3 Mon Sep 17 00:00:00 2001 From: James Blair Date: Wed, 1 Jan 2020 19:55:06 +0000 Subject: [PATCH] Added context to dotfile restore section. --- wsl-setup.org | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wsl-setup.org b/wsl-setup.org index 265caf5..c4435dc 100644 --- a/wsl-setup.org +++ b/wsl-setup.org @@ -162,11 +162,15 @@ This guide will walk through setting up [[https://en.wikipedia.org/wiki/Windows_ Within wsl we can use .dotfiles to further customise our environment. The script below restores my versions of key dotfiles automatically. + + *Note* The git clone below relies on having permission to clone the + repository referenced. For me this means having an ssh key present + which has been added to gitlab. #+NAME: Clone and restore the dotfiles #+BEGIN_SRC tmate - git clone ssh://git@gitlab.jamma.life:2224/jmhbnz/tooling.git - cd /tooling/ + git clone ssh://git@gitlab.jamma.life:2224/jmhbnz/tooling.git ~/Documents/ + cd ~/Documents/tooling/ cp .* ~/ #+END_SRC