Create new repository
git init
Clone repository
git clone remote_link_address
Add changed file/s
Single file
git add file_name.extention
Folder
git add /folder_name
All changed files
git add .
Commit to git
git commit -m "write your commit message"
Upload to remote
git push
Update/fetch from remote
git pull