From 20bc68b3b3efd1a91aa5d47b1e630425604a0a39 Mon Sep 17 00:00:00 2001 From: Tim Green Date: Sun, 13 Apr 2014 16:04:19 +0100 Subject: [PATCH] TODO Lists --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index aef92e1..2a9f420 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ All the hidden and not hidden features of Git and GitHub. This cheat sheet was i - [Merged Branches](https://github.com/tiimgreen/github-cheat-sheet#merged-branches) - [Quick Licensing](https://github.com/tiimgreen/github-cheat-sheet#quick-licensing) - [.gitconfig Recommendations](https://github.com/tiimgreen/github-cheat-sheet#gitconfig-recommendations) +- [TODO Lists](https://github.com/tiimgreen/github-cheat-sheet#todo-lists) - [Aliases](https://github.com/tiimgreen/github-cheat-sheet#aliases) - [Auto-correct](https://github.com/tiimgreen/github-cheat-sheet#auto-correct) - [Color](https://github.com/tiimgreen/github-cheat-sheet#color) @@ -358,6 +359,25 @@ You can also add them to existing repos by creating a new file through the web i Also works for `.gitignore`. +## TODO Lists + +In Issues and Pull requests check boxes can be added with the following syntax (notice the space): +``` +- [ ] Be awesome +- [ ] Do stuff +- [ ] Sleep +``` + +![TODO List](http://i.imgur.com/k2qZi56.png) + +When they are clicked, they will be updated in the pure Markdown: + +``` +- [x] Be awesome +- [x] Do stuff +- [ ] Sleep +``` + ## .gitconfig Recommendations Your `.gitconfig` is the file that contains all your preferences.