Github: commericial service for hosting the data
git add file1.txt
or git add .
to add all modified files.git commit -m "Add feature XYZ"
.git push origin main
to push your changes to the “main” branch of the remote repository named “origin”.git add <file>
git commit -m "message for why we're staging the files"
git push origin main
git status
// shows what files are staged/modified/etc, use whenevergit add <file(s)>
git commit
git push origin main