Getting started with Git
There are GUIs for Git, but I have no experience with them.
Installing WSL: (HERE)[https://docs.microsoft.com/en-us/windows/wsl/install-win10]
Create SSH Key
ssh-keytgen
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
Now you can do the git stuff
git add NEW_FILE
git commit -m 'ADD INFO HERE OF WHAT WAS CHANGED/ADDED'
git push