Create repository:
git initSee files:
git statusAdd files to commit:
git add .or
git add filename.txtCommit files:
git commit -m "commit name"Add remote:
git remote add origin https://github.com/....Push changes to remote:
git push origin mainSee branches:
git branchChange branch:
git checkout branch_nameCreate branch:
git checkout -b branch_name