readme checkbox code example
Example 1: check box markdown
### Solar System Exploration, 1950s – 1960s
- [ ] Mercury
- [x] Venus
- [x] Earth (Orbit/Moon)
- [x] Mars
- [ ] Jupiter
- [ ] Saturn
- [ ] Uranus
- [ ] Neptune
- [ ] Comet Haley
Example 2: 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