Answers for "checkbox in readme"

7

check box markdown

### Solar System Exploration, 1950s – 1960s

- [ ] Mercury
- [x] Venus
- [x] Earth (Orbit/Moon)
- [x] Mars
- [ ] Jupiter
- [ ] Saturn
- [ ] Uranus
- [ ] Neptune
- [ ] Comet Haley
Posted by: Guest on December-01-2020
0

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
Posted by: Guest on March-22-2021

Browse Popular Code Answers by Language