checkbox in readme.md code example
Example: readme check box
git pull origin master
git add .
git commit -m "Initial commit"
git push origin master
git rm -r --cached Path/to/directories
git branch -a # See branches
git checkout develop # Change branch
# Merge develop to main
git add .
git commit -m "update"
git push
git checkout main
git merge develop
git push -u origin main
git checkout develop