@@ -27,6 +27,7 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
27
27
- [ Quick Quoting] ( #quick-quoting )
28
28
- [ Quick Licensing] ( #quick-licensing )
29
29
- [ Task Lists] ( #task-lists )
30
+ - [ Task Lists in Markdown Documents] ( #task-lists-in-markdown-documents )
30
31
- [ Relative Links] ( #relative-links )
31
32
- [ Metadata and Plugin Support for GitHub Pages] ( #metadata-and-plugin-support-for-github-pages )
32
33
- [ Viewing YAML Metadata in your Documents] ( #viewing-yaml-metadata-in-your-documents )
@@ -366,6 +367,25 @@ puts table.to_s
366
367
367
368
[ * 테스크 리스트에 대해 더 읽어 보세요.* ] ( https://github.com/blog/1375%0A-task-lists-in-gfm-issues-pulls-comments )
368
369
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
+
369
389
### Relative Links
370
390
371
391
상대 경로 링크는 마크다운 파일이 내부 건탠츠로 링크될 때 추천합니다.
@@ -636,11 +656,15 @@ $ git status -sb
636
656
637
657
### Styled Git Log
638
658
659
+ 이 명령을 실행하면
660
+
639
661
``` 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
641
663
```
642
664
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 )
644
668
645
669
[ Palesz] ( http://stackoverflow.com/users/88355/palesz ) 님 고맙습니다.
646
670
@@ -802,6 +826,7 @@ $ git config --global color.ui 1
802
826
| Git for Designer | http://hoth.entp.com/output/git_for_designers.html |
803
827
| Git for Computer Scientists | http://eagain.net/articles/git-for-computer-scientists/ |
804
828
| Git Magic | http://www-cs-students.stanford.edu/~blynn/gitmagic/ |
829
+ | GitHub Training Kit | http://training.github.com/kit |
805
830
806
831
#### Git Books
807
832
0 commit comments