This commit is contained in:
Jacob 2024-09-17 12:47:34 -04:00
parent a71eacc356
commit 8ced281652

View File

@ -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
```