Skip to content

Commit 554d1a3

Browse files
committed
Update to b32ba31
1 parent a279933 commit 554d1a3

1 file changed

Lines changed: 48 additions & 8 deletions

File tree

README.ko.md

Lines changed: 48 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ All the hidden and not hidden features of Git and GitHub. This cheat sheet was i
99
- [Hub - Git Wrapper](#hub---git-wrapper)
1010
- [Decreasing Contributor Friction](#decreasing-contributor-friction)
1111
- [Previous Branch](#previous-branch)
12-
- [git.io](#gitio)
12+
- [Git.io](#gitio)
1313
- [Gists](#gists)
1414
- [Keyboard Shortcuts](#keyboard-shortcuts)
1515
- [Closing Issues with Commits](#closing-issues-with-commits)
@@ -21,6 +21,10 @@ All the hidden and not hidden features of Git and GitHub. This cheat sheet was i
2121
- [Comparing Branches](#comparing-branches)
2222
- [Line Highlighting in Repos](#line-highlighting-in-repos)
2323
- [Metadata and Plugin Support for GitHub Pages](#metadata-and-plugin-support-for-github-pages)
24+
- [Diffs](#diffs)
25+
- [Rendered Prose Diffs](#rendered-prose-diffs)
26+
- [Diffable Maps](#diffable-maps)
27+
- [Expanding Context in Diffs](#expanding-context-in-diffs)
2428
- [Emojis](#emojis)
2529
- [Images/GIFs](#imagesgifs)
2630
- [Quick Quoting](#quick-quoting)
@@ -31,7 +35,7 @@ All the hidden and not hidden features of Git and GitHub. This cheat sheet was i
3135
- [Quick Licensing](#quick-licensing)
3236
- [Task Lists](#task-lists)
3337
- [Relative Links](#relative-links)
34-
- [.gitconfig Recommendations](#gitconfig-recommendations)
38+
- [`.gitconfig` Recommendations](#gitconfig-recommendations)
3539
- [Aliases](#aliases)
3640
- [Auto-correct](#auto-correct)
3741
- [Color](#color)
@@ -74,7 +78,7 @@ $ hub clone tiimgreen/toc
7478

7579
사람들이 사용하고 기여할 수 있는 프로젝트를 만드려면, 가장 기본적인 질문에 대답할 수 있어야합니다. 이 프로젝트는 무엇입니까? 어떻게 사용합니까? 어디까지 허용됩니까? 어떻게 기여합니까? 어떻게 개발하고 실행해야 합니까? 어떻게 새로운 기능이 이전 기능을 손상되지 않았는지 확인해야 합니까?
7680

77-
[Friction](https://github.com/rafalchmiel/friction)은 이러한 일반적인 질문들의 답이 프로젝트 안에 있는지 확인하는 커맨드 라인 스크립트 입니다. 다음은 샘플 출력 입니다.
81+
[Friction](https://github.com/rafalchmiel/friction)은 이러한 일반적인 [질문들의 ](https://github.com/rafalchmiel/friction/wiki) 프로젝트 안에 있는지 확인하는 커맨드 라인 스크립트 입니다. 다음은 샘플 출력 입니다.
7882

7983
[![Friction output](http://i.imgur.com/4EgpWo4.png)](https://github.com/rafalchmiel/friction)
8084

@@ -101,11 +105,19 @@ $ git checkout -
101105

102106
[*깃 브랜치에 대해 더 읽어 보세요.*](http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging)
103107

104-
## git.io
108+
## Git.io
105109

106-
[git.io](http://git.io)는 깃허브를 위한 간단한 URL 단축기입니다.
110+
[Git.io](http://git.io)는 깃허브를 위한 간단한 URL 단축기입니다. 순수 HTTP에서 Curl으로 사용하실 수도 있습니다.
107111

108-
[http://git.io/wO0xUg](http://git.io/wO0xUg)
112+
```bash
113+
$ curl -i http://git.io -F "url=https://github.com/..."
114+
HTTP/1.1 201 Created
115+
Location: http://git.io/abc123
116+
117+
$ curl -i http://git.io/abc123
118+
HTTP/1.1 302 Found
119+
Location: https://github.com/...
120+
```
109121

110122
[*Git.io에 대해 더 읽어 보세요.*](https://github.com/blog/985-git-io-github-url-shortener)
111123

@@ -198,12 +210,14 @@ $ git checkout origin/pr/42
198210

199211
[*풀 리퀘스트를 로컬로 체크아웃 하는 방법에 대해 더 읽어 보세요.*](https://help.github.com/articles/checking-out-pull-requests-locally)
200212

201-
## Cross-link Issues
213+
## Cross-Link Issues
202214

203215
같은 저장소의 다른 이슈를 링크하기 원한다면, `#`뒤에 이슈 번호만 입력하시면 자동으로 링크됩니다.
204216

205217
다른 저장소의 이슈를 링크하고 싶다면 `사람_이름/저장소_이름#이슈_번호`로 할 수 있습니다. (예 `tiimgreen/toc#12`)
206218

219+
![Cross-Link Issues](https://camo.githubusercontent.com/447e39ab8d96b553cadc8d31799100190df230a8/68747470733a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f626c6f672f323031312f736563726574732f7265666572656e6365732e706e67)
220+
207221
## Syntax Highlighting in Markdown Files
208222

209223
마크다운에서 예를 들어, 루비 코드를 신텍스 하이라이트 하려면 이렇게 합니다.
@@ -308,6 +322,32 @@ Jemoji와 jekyll-mentions플러그인은 GitHub.com에서 처럼 [emoji](#emojis
308322

309323
[*저장소 메타 데이타와 깃허브 페이지의 플러그인 지원에 대해 더 읽어 보세요.*](Repository metadata and plugin support for GitHub Pages)
310324

325+
## Diffs
326+
327+
### Rendered Prose Diffs
328+
329+
산문(prose) 파일이 있는 커밋과 풀 리퀘스트는 *source**rendered* 뷰 기능을 사용할 수 있습니다. "rendered" 버튼을 클릭하시면 렌더된 문서에서 변경을 확인하실 수 있습니다. 렌더된 산문(prose) 뷰는 문장을 추가, 삭제, 변경했을때 유용합니다.
330+
331+
![Rendered Prose Diffs](https://f.cloud.github.com/assets/17715/2003056/3997edb4-862b-11e3-90be-5e9586edecd7.png)
332+
333+
[*렌더된 산문(prose) diff에 대해 더 읽어 보세요.*](https://github.com/blog/1784-rendered-prose-diffs)
334+
335+
### Diffable Maps
336+
337+
지오데이타가 포함된 커밋이나 풀 리퀘스트를 볼 때마다 깃허브는 무엇이 변경 되었는지 시각적으로 보여줍니다.
338+
339+
[![Diffable Maps](https://f.cloud.github.com/assets/282759/2090660/63f2e45a-8e97-11e3-9d8b-d4c8078b004e.gif)](https://github.com/benbalter/congressional-districts/commit/2233c76ca5bb059582d796f053775d8859198ec5)
340+
341+
[*diff 가능한 맵에 대해 더 읽어 보세요.*](https://github.com/blog/1772-diffable-more-customizable-maps)
342+
343+
### Expanding Context in Diffs
344+
345+
Using the *unfold* button in the gutter of a diff, you can reveal additional lines of context with a click. You can keep clicking *unfold* until you've revealed the whole file, and the feature is available anywhere GitHub renders diffs.
346+
347+
![Expanding Context in Diffs](https://f.cloud.github.com/assets/22635/1610539/863c1f64-5584-11e3-82bf-151b406a272f.gif)
348+
349+
[*diff에서의 문맥 확장에 대해 더 읽어 보세요.*](https://github.com/blog/1705-expanding-context-in-diffs)
350+
311351
## Emojis
312352

313353
에모지는 풀 리퀘스트, 이슈, 커밋 메세지, README등등에서 `:에모지의_이름:`으로 만들 수 있습니다.
@@ -472,7 +512,7 @@ $ git branch --no-merged
472512

473513
[*상대 경로 링크에 대해 더 읽어 보세요.*](https://help.github.com/articles/relative-links-in-readmes)
474514

475-
## .gitconfig Recommendations
515+
## `.gitconfig` Recommendations
476516

477517
`.gitconfig`는 모든 설정이 들어있는 파일입니다.
478518

0 commit comments

Comments
 (0)