A temporary publication of this website can be viewed from the following link:
https://homieomie.github.io/SDCBuggy-Website/
* note that this publication is from the main branch of the repository. Any work done on a separate branch will not be viewable via Github Pages and must be viewed locally on your machine.
- Open your linuz terminal and enter the following command
ssh-keygen -t ed25519 -C [email protected]
a. Make sure to replace[email protected]
with the email you used for the Github account you will be using to work with the repo
b. If you have an older machine, you can replace the encryptioned25519
in the above command with another encryption method such asrsa
:ssh-keygen -t rsa -b 4096
- The terminal will then ask you questions regarding which file systems to save your SSH key-pair in and if you would like to use a password with your SSH: you can simply press enter without putting anything in the terminal to skip those prompts.
a. If would like to store your SSH key-pair in a different file path in your system, you may specify so. b. If you would like to use a Password with your SSH key-pair, you may specify so. - In your terminal, enter the following command
~/.ssh/config
a. If you get a message sayingno such file or directory
, then enter the commandtouch ~/.ssh/config
, otherwise proceed to the next step - In your terminal, enter the following command
vim ~/.ssh/config
. You will be using vim editor to configure theconfig
file. - Enter the following code block into the file you just opened with vim editor:
Host *
AddKeysToAgent yes
IdentityFile ~/.ssh/id_ed25519
- Then save this file by pressing the
Esc
key and entering:wq
into the terminal then pressingEnter
- The enter the following command into your terminal
ssh-add ~/.ssh/id_ed25519
- Next, enter the following command into the terminal
cat ~/.ssh/id_ed25519.pub
: Copy the terminal output to your clipboard (ctrl+c)
a. Example key:ssh-ed25519 ALKJHKLJHKhkjhskjhkhgekj [email protected]
- Next open up Github, go to your profile, go to
SSH and GPG Keys
, and click onNew SSH Key
- Next, add a name for your SSH key i.e.
HomieOmie SDC Wesbite SSH
in the box labeled Title, and past the SSH key you copied to your clipboard into the box labeled Key, then clickAdd SSH Key
- Your SSH Key for Github is now setup
- To clone the repo, go to the tab labeled
<> code
, click the dropdown labeled<> clone
, click the tab labeledSSH
, and copy it using the button with the two overlapping squares - The go into your terminal and go into whatever directory you want to clone this repo to and enter the following command
git clone SSHLINK
a.SSHLINK
will be the link you just copied to your clipboard - The repo should now have cloned to your local machine