From 8ced2816522535ac641c626684ffb27fb7d93b6d Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 17 Sep 2024 12:47:34 -0400 Subject: [PATCH] test --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e1e5d11..0193083 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ For the security and ease of use, I suggest using `ssh` to push changes. This guide will assume a UNIX-based operating environment (e.g. MacOS, Linux). First, generate an ssh key pair. -``` +```bash $ ssh-keygen -f ~/.ssh/git.signorovitch.org ``` @@ -21,3 +21,13 @@ your profile in the top right corner. Go to Settings → SSH/GPG Keys → Manage SSH Keys. Click 'Add Key' and paste your **PUBLIC** key (`~/.ssh/git.signorovitch.org.pub`) into the text box. You should now be able to commit changes via ssh. + +To confirm your configuration works, try commiting to this repository: + +```bash +$ git clone git@git.signorovitch.org:commonwealth-robotics/docs.git +$ cd docs +$ echo "Something" >> user-tests/yourname.txt +$ git commit -am "Your fancy commit message" +$ git push +```