From 207471a6300987ef52883d41a94857d6606978d3 Mon Sep 17 00:00:00 2001 From: aewens Date: Fri, 27 Mar 2020 18:40:40 -0600 Subject: [PATCH] Added initial instructions for joining tilde.one --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0ee4cd5 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# How to join tilde.one + +1. Fork this repository + +1. Clone the repository to your computer: +```bash +$ git clone git@tildegit.org:/setup.git +$ cd setup +``` + +1. Create an SSH key pair (press enter for all prompts to use defaults): +```bash +$ ssh-keygen -t ed25519 +``` + +1. Add your public key to the authorized_keys file: +```bash +$ cat ~/.ssh/id_ed25519.pub >> authorized_keys +``` + +1. Add, commit, and push your changes: +```bash +$ git add authorized_keys +$ git commit -m "Added SSH keys for " +$ git push origin master +``` + +1. Open a pull request for your changes to merged into the project + +Once the pull request is merged, you can login using: +```bash +$ ssh one@tilde.one +```