Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6a6e47b

Browse files
committed
Update korean to 9e4c38b
1 parent 9e4c38b commit 6a6e47b

File tree

1 file changed

+23
-51
lines changed

1 file changed

+23
-51
lines changed

README.ko.md

Lines changed: 23 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
1313
- [Adjust Tab Space](#adjust-tab-space)
1414
- [Commit History by Author](#commit-history-by-author)
1515
- [Cloning a Repository](#cloning-a-repository)
16-
- [Branch](#branch)
16+
- [Branch](#branch)
1717
- [Compare all Branches to Another Branch](#compare-all-branches-to-another-branch)
1818
- [Comparing Branches](#comparing-branches)
1919
- [Compare Branches across Forked Repositories](#compare-branches-across-forked-repositories)
@@ -30,6 +30,7 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
3030
- [Images/GIFs](#imagesgifs)
3131
- [Embedding Images in GitHub Wiki](#embedding-images-in-github-wiki)
3232
- [Quick Quoting](#quick-quoting)
33+
- [Pasting Clipboard Image to Comments](#pasting-clipboard-image-to-comments)
3334
- [Quick Licensing](#quick-licensing)
3435
- [Task Lists](#task-lists)
3536
- [Task Lists in Markdown Documents](#task-lists-in-markdown-documents)
@@ -45,7 +46,6 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
4546
- [Diff or Patch of Pull Request](#diff-or-patch-of-pull-request)
4647
- [Rendering and diffing images](#rendering-and-diffing-images)
4748
- [Hub](#hub)
48-
- [Decreasing Contributor Friction](#decreasing-contributor-friction)
4949
- [Contributing Guidelines](#contributing-guidelines)
5050
- [Octicons](#octicons)
5151
- [GitHub Resources](#github-resources)
@@ -80,13 +80,13 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
8080

8181
### Adjust Tab Space
8282

83-
diff나 파일 URL에 `?ts=4`를 덧붙이면 텝 문자의 크기를 기본값인 8대신 4공백으로 보여줍니다. `ts`뒤의 숫자는 설정에 맞게 변경 하실 수 있습니다. gist나 raw파일에는 적용 되지 않습니다.
83+
diff나 파일 URL에 `?ts=4`를 덧붙이면 텝 문자의 크기를 기본값인 8대신 4공백으로 보여줍니다. `ts`뒤의 숫자는 설정에 맞게 변경 하실 수 있습니다. gist나 raw파일 보기에는 적용 되지 않습니다만, [크롬 익스텐션](https://chrome.google.com/webstore/detail/github-tab-size/ofjbgncegkdemndciafljngjbdpfmbkn)으로 자동화 할 수 있습니다.
8484

85-
여기에 있는 Go 소스 파일은 `?ts=4`를 붙이기 [전에는](https://github.com/pengwynn/flint/blob/master/flint/flint.go) 이렇습니다.
85+
여기에 있는 Go 소스 파일은 `?ts=4`를 붙이기 전에는 이렇습니다.
8686

8787
![Before, tab space example](http://i.imgur.com/GIT1Fr0.png)
8888

89-
그리고 `?ts=4`를 붙인 [다음에는](https://github.com/pengwynn/flint/blob/master/flint/flint.go?ts=4) 이렇게 됩니다.
89+
그리고 `?ts=4`를 붙인 다음에는 이렇게 됩니다.
9090
--allow-empty
9191
![After, tab space example](http://i.imgur.com/70FL4H9.png)
9292

@@ -98,7 +98,7 @@ diff나 파일 URL에 `?ts=4`를 덧붙이면 텝 문자의 크기를 기본값
9898
https://github.com/rails/rails/commits/master?author=dhh
9999
```
100100

101-
![DHH commit history](http://i.imgur.com/mDWwuaY.png)
101+
![DHH commit history](http://i.imgur.com/S7AE29b.png)
102102

103103
[*커밋 뷰간의 차이에 대해 더 읽어보세요.*](https://help.github.com/articles/differences-between-commit-views)
104104

@@ -125,21 +125,7 @@ https://github.com/{user}/{repo}/branches
125125

126126
여기에서 버튼 클릭으로 비교 페이지나 브랜치 삭제를 하실 수 있습니다.
127127

128-
![Compare branches not merged into master in jquery/jquery repo - https://github.com/jquery/jquery/branches](http://i.imgur.com/gKWPe8a.png)
129-
130-
하지만, 보통 `master`보다는 다른브랜치(예를 들어 `development`)를 더 자주 비교 합니다. 이렇게 하려면 URL에 브랜치 이름을 붙여줄 필요가 있습니다.
131-
132-
```
133-
https://github.com/{user}/{repo}/branches/{branch}
134-
```
135-
136-
![Compare branches not merged into `1.x-master` in jquery/jquery repo - https://github.com/jquery/jquery/branches/1.x-master](http://i.imgur.com/jpc6Urb.png)
137-
138-
머지된 브랜치들을 보려면 URL에 `?merged=1`를 붙이세요.
139-
140-
![Compare branches merged in to `1.x-master` in jquery/jquery repo - https://github.com/jquery/jquery/branches/1.x-master?merged=1](http://i.imgur.com/KmYyCVh.png)
141-
142-
이 것을 확인함으로써 커맨드 라인을 사용하지 않은 페이지에서의 브랜치 삭제가 더 쉬워집니다.
128+
![Compare branches not merged into master in rails/rails repo - https://github.com/rails/rails/branches](http://i.imgur.com/0FEe30z.png)
143129

144130
#### Comparing Branches
145131

@@ -157,7 +143,7 @@ https://github.com/user/repo/compare/{range}
157143
https://github.com/rails/rails/compare/master...4-1-stable
158144
```
159145

160-
![Rails branch compare example](http://i.imgur.com/0Z52X5Y.png)
146+
![Rails branch compare example](http://i.imgur.com/tIRCOsK.png)
161147

162148
`{range}` 는 이렇게 적을 수도 있습니다.
163149

@@ -179,7 +165,7 @@ https://github.com/rails/rails/compare/master@{2014-10-04}...master
179165
포크된 저장소간의 브랜치를 비교하려면 URL을 이렇게 변경하세요.
180166

181167
```
182-
https://github.com/user/repo/compare/{foreign-user}:{branch}...{own-branch}
168+
https://github.com/{user}/{repo}/compare/{foreign-user}:{branch}...{own-branch}
183169
```
184170

185171
예를 들면
@@ -204,9 +190,9 @@ Gists는 본격적인 저장소처럼 취급할 수 있고 클론도 됩니다.
204190
$ git clone https://gist.github.com/tiimgreen/10545817
205191
```
206192

207-
![Gists](http://i.imgur.com/dULZXXo.png)
193+
![Gists](http://i.imgur.com/BcFzabp.png)
208194

209-
이는 Gists에서도 수정하고 업데이트를 부쉬할 수 있다는 의미입니다.
195+
이는 Gists에서도 수정하고 업데이트를 푸쉬할 수 있다는 의미입니다.
210196

211197
```bash
212198
$ git commit
@@ -332,19 +318,7 @@ puts table.to_s
332318

333319
### Emojis
334320

335-
에모지는 풀 리퀘스트, 이슈, 커밋 메세지, README등에 `:에모지의_이름:`으로 넣을 수 있습니다.
336-
337-
```
338-
:smile:
339-
:poop:
340-
:shipit:
341-
:+1:
342-
```
343-
344-
:smile:
345-
:poop:
346-
:shipit:
347-
:+1:
321+
에모지는 풀 리퀘스트, 이슈, 커밋 메세지등에 `:에모지의_이름:`으로 넣을 수 있습니다.
348322

349323
깃허브에서 사용 가능한 에모지의 전 목록은 [emoji-cheat-sheet.com](http://www.emoji-cheat-sheet.com/)[scotch-io/All-Github-Emoji-Icons](https://github.com/scotch-io/All-Github-Emoji-Icons)에서 확인하실 수 있습니다.
350324

@@ -394,6 +368,14 @@ puts table.to_s
394368

395369
[*빠른 인용에 대해 더 읽어 보세요.*](https://github.com/blog/1399-quick-quotes)
396370

371+
### Pasting Clipboard Image to Comments
372+
373+
스크린샷을 찍고 클립보드에 있는 경우 (mac: `cmd-ctrl-shift-4`), 간단히 이미지를 커맨트 색션에 붙여넣기(`cmd-v / ctrl-v`)할 수 있고 이는 자동으로 깃허브에 업로드 됩니다.
374+
375+
![Pasting Clipboard Image to Comments](https://cloud.githubusercontent.com/assets/39191/5794265/39c9b65a-9f1b-11e4-9bc7-04e41f59ea5f.png)
376+
377+
[*issue attachments에 대해 더 읽어 보세요.*](https://help.github.com/articles/issue-attachments)
378+
397379
### Quick Licensing
398380

399381
저장소를 만들 때, 깃허브는 만들어진 저작권을 추가할 수 있는 옵션을 제공합니다.
@@ -587,16 +569,6 @@ $ hub clone tiimgreen/toc
587569

588570
[*Hub가 제공하는 더 멋진 기능들을 확인해 보세요.*](https://github.com/github/hub#commands)
589571

590-
### Decreasing Contributor Friction
591-
592-
사람들이 사용하고 기여할 수 있는 프로젝트를 만드려면, 가장 기본적인 질문에 대답할 수 있어야합니다. 이 프로젝트는 무엇입니까? 어떻게 사용합니까? 어디까지 허용됩니까? 어떻게 기여합니까? 어떻게 개발하고 실행해야 합니까? 어떻게 새로운 기능이 이전 기능을 손상되지 않았는지 확인해야 합니까?
593-
594-
[Friction](https://github.com/rafalchmiel/friction)은 이러한 일반적인 [질문들의 답](https://github.com/rafalchmiel/friction/wiki)이 프로젝트 안에 있는지 확인하는 커맨드 라인 스크립트 입니다. 다음은 샘플 출력 입니다.
595-
596-
[![Friction output](http://i.imgur.com/4EgpWo4.png)](https://github.com/rafalchmiel/friction)
597-
598-
*Friction 은 MRI 2.1.0, MRI 2.0.0, MRI 1.9.3을 지원합니다.*
599-
600572
### Contributing Guidelines
601573

602574
저장소의 제일 위에 `CONTRIBUTING` 파일을 넣어두면 기여자가 이슈를 만들거나 풀 리퀘스트를 만들 때 링크로 보여줍니다.
@@ -757,15 +729,15 @@ $ git commit -m "Big-ass commit" --allow-empty
757729
$ git status
758730
```
759731

760-
![git status](http://i.imgur.com/o3PEHAA.png)
732+
![git status](http://i.imgur.com/qjPyvXb.png)
761733

762734
이렇게 바뀝니다.
763735

764736
```bash
765737
$ git status -sb
766738
```
767739

768-
![git status -sb](http://i.imgur.com/xNI1bT0.png)
740+
![git status -sb](http://i.imgur.com/K0OY3nm.png)
769741

770742
[*`status` 커맨드에 대해 더 읽어 보세요.*](http://git-scm.com/docs/git-status)
771743

@@ -779,7 +751,7 @@ $ git log --all --graph --pretty=format:'%Cred%h%Creset -%C(auto)%d%Creset %s %C
779751

780752
이렇게 보입니다.
781753

782-
![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)
754+
![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/58eOtkW.png)
783755

784756
[Palesz](http://stackoverflow.com/users/88355/palesz)님 고맙습니다.
785757

0 commit comments

Comments
 (0)