@@ -27,6 +27,7 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
2727 - [ Quick Quoting] ( #quick-quoting )
2828 - [ Quick Licensing] ( #quick-licensing )
2929 - [ Task Lists] ( #task-lists )
30+ - [ Task Lists in Markdown Documents] ( #task-lists-in-markdown-documents )
3031 - [ Relative Links] ( #relative-links )
3132 - [ Metadata and Plugin Support for GitHub Pages] ( #metadata-and-plugin-support-for-github-pages )
3233 - [ Viewing YAML Metadata in your Documents] ( #viewing-yaml-metadata-in-your-documents )
@@ -366,6 +367,25 @@ puts table.to_s
366367
367368[ * 테스크 리스트에 대해 더 읽어 보세요.* ] ( https://github.com/blog/1375%0A-task-lists-in-gfm-issues-pulls-comments )
368369
370+ #### Task Lists in Markdown Documents
371+ 이제 마크다운 문서에서 ** 읽기 전용** 체크리스트를 넣을 수 있습니다.
372+
373+ ```
374+ - [ ] Mercury
375+ - [x] Venus
376+ - [x] Earth
377+ - [x] Mars
378+ - [ ] Jupiter
379+ ```
380+
381+ - [ ] Mercury
382+ - [x] Venus
383+ - [x] Earth
384+ - [x] Mars
385+ - [ ] Jupiter
386+
387+ [ * 마크다운 문서에서의 테스크 리스트에 대해 더 읽어 보세요.* ] ( https://github.com/blog/1825-task-lists-in-all-markdown-documents )
388+
369389### Relative Links
370390
371391상대 경로 링크는 마크다운 파일이 내부 건탠츠로 링크될 때 추천합니다.
@@ -636,11 +656,15 @@ $ git status -sb
636656
637657### Styled Git Log
638658
659+ 이 명령을 실행하면
660+
639661``` bash
640- $ git log --all --graph --pretty=format:' %Cred%h%Creset -%C(yellow )%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
662+ $ git log --all --graph --pretty=format:' %Cred%h%Creset -%C(auto )%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
641663```
642664
643- ![ git log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative] ( http://i.imgur.com/R2z8l7c.png )
665+ 이렇게 보입니다.
666+
667+ ![ git log --all --graph --pretty=format:'%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative] ( http://i.imgur.com/EARRQyJ.png )
644668
645669[ Palesz] ( http://stackoverflow.com/users/88355/palesz ) 님 고맙습니다.
646670
@@ -802,6 +826,7 @@ $ git config --global color.ui 1
802826| Git for Designer | http://hoth.entp.com/output/git_for_designers.html |
803827| Git for Computer Scientists | http://eagain.net/articles/git-for-computer-scientists/ |
804828| Git Magic | http://www-cs-students.stanford.edu/~blynn/gitmagic/ |
829+ | GitHub Training Kit | http://training.github.com/kit |
805830
806831#### Git Books
807832
0 commit comments