You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RedStealthDev
499b162be6
|
2 years ago | |
---|---|---|
.gitignore | 2 years ago | |
README.md | 2 years ago |
README.md
How To Git <3
Table Of Contents
- Part 1 Setting up account
- Part 2 SSH keys
- Part 3 Setting up github desktop
- part 4 Finishing up
- Usage
Part 1 Setting up account
- First of all Register here.
- Ask your organization owner to add you to the organization you can move on after telling them.
Part 2 SSH keys
- Press the windows key, search for
cmd
and open the black box. - Write
ssh-keygen -t ed25519 -C "your_email@example.com"
replacing "your_email@example.com" with your own and press enter.- Press enter on all questions.
- Press the windows key, search for
services
and press the blueish cogs. - Scroll down and find
OpenSSH Authentication Agent
Right click and press**Preferences**
. - Open the
StartMethod
dropdown and select**Automatic (Delayed start)**
. - Press apply then press start. you can now exit the "Services" app.
- Open
File Explorer
and navigate toC:\Users\"YOUR NAME"\.ssh
. - Make sure that you have File extentions enabled in the show menu of File Explorer.
- Now Make a file and name it
config
with no extention. - Open
config
in notepad and writeAddKeyToAgent yes
. - Now back in cmd write
ssh-add .ssh/id_ed25519
and press enter.- You can close cmd now.
- Open this Link and press add key.
- Now in the
.ssh
folder we opened earlier you should find aìd_ed25519.pub
.- Open it and copy the contents.
- Paste the text from the file in the big box on the ssh key page and rename it to something relevant like laptop or school.
- Finish of this part by pressing the
Add Key
button under the big box.