Getting started with Git
There are GUIs for Git, but I have no experience with them.
Installing WSL: HERE
I recommend Debian OR Alpine
Alpine Linux: HERE
Debian Linux: HERE
Create SSH Key
ssh-keygen
Get SSH public key
cat ~/.ssh/id_rsa.pub
Add key to gitea
User profile in upper right hand corner
Settings
SSH/GPG Keys
Manage SSH Keys -> Add Key (to the right)
Paste whole key in Content, this should add the SSH Key Name in the name field
Clone git repo
Find repo you want
Switch to SSH option in cloning
git clone URL_HERE
Now you can do the git stuff
git add NEW_FILE
git commit -m 'ADD INFO HERE OF WHAT WAS CHANGED/ADDED'
git push