project:
git init
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin https://github.com/USERNAME/REPO.git
git push -u origin main
git status
git add .
git commit -m "update"
git push
git pull
git branch feature-1
git checkout feature-1
git push -u origin feature-1