aboutsummaryrefslogtreecommitdiff
path: root/docs/ko-kr/getting_started_github.md
diff options
context:
space:
mode:
authorSeungheonOh <dan.oh0721@gmail.com>2020-11-09 13:11:04 -0600
committerGitHub <noreply@github.com>2020-11-10 06:11:04 +1100
commitcb80b59e9343c014389d56317e93f4de71d07a9a (patch)
treea8de9651057c42f402f2fa35e06683a4ae2d73ed /docs/ko-kr/getting_started_github.md
parent95bbd799a4f86dac37fdf2354e008d2fed7f6660 (diff)
downloadqmk_firmware-cb80b59e9343c014389d56317e93f4de71d07a9a.tar.gz
qmk_firmware-cb80b59e9343c014389d56317e93f4de71d07a9a.zip
Adding few Korean translated files (#5895)
* Korean Translation Korean Translation * Korean translation * more Korean translations
Diffstat (limited to 'docs/ko-kr/getting_started_github.md')
-rw-r--r--docs/ko-kr/getting_started_github.md67
1 files changed, 67 insertions, 0 deletions
diff --git a/docs/ko-kr/getting_started_github.md b/docs/ko-kr/getting_started_github.md
new file mode 100644
index 000000000..2ff0ccb79
--- /dev/null
+++ b/docs/ko-kr/getting_started_github.md
@@ -0,0 +1,67 @@
1# QMK와 함께 Github를 사용하는 방법
2
3Github can be a little tricky to those that aren't familiar with it - this guide will walk through each step of forking, cloning, and submitting a pull request with QMK.
4
5Github는 자주 사용하는 사람이 아니면 좀 여려울수도 있습니다. 이 문서는 Github를 사용하는데 필요한 forking, cloning 그리고 submitting a pull request with QMK를 설명할 것입니다.
6
7?> 이 가이드는 당신이 git커맨드를 사용하는데 익숙하고 git환경을 당신의 시스템이 설치하였다는 전제하에 작성되었습니다.
8
9아래와 같이 [QMK Github 페이지](https://github.com/qmk/qmk_firmware)에서 당신은 "Fork"라고 쓰여있는 버튼을 볼 수 있습니다
10
11![Fork on Github](http://i.imgur.com/8Toomz4.jpg)
12
13만약 당신이 어느기관 소속이고, 무슨 계정을 사용할것인지 골라야 한다면 개인 계정을 사용하는 것을 추천합니다.
14"Fork"가 성공적으로 끝났다면 아래 보이는 "Clone or Download"를 눌러야 합니다.
15
16![Download from Github](http://i.imgur.com/N1NYcSz.jpg)
17
18"HTTPS"채크 했는지 확인하고 나와 있는 링크를 복사하세요.
19
20![HTTPS link](http://i.imgur.com/eGO0ohO.jpg)
21
22여기거 부터 커맨드라인을 사용합니다. 커맨드 라인에서 `git clone `을 치고 복사한 링크를 붙여넣은후 실행시키세요.
23
24```
25user@computer:~$ git clone https://github.com/whoeveryouare/qmk_firmware.git
26Cloning into 'qmk_firmware'...
27remote: Counting objects: 46625, done.
28remote: Compressing objects: 100% (2/2), done.
29remote: Total 46625 (delta 0), reused 0 (delta 0), pack-reused 46623
30Receiving objects: 100% (46625/46625), 84.47 MiB | 3.14 MiB/s, done.
31Resolving deltas: 100% (29362/29362), done.
32Checking out files: 100% (2799/2799), done.
33```
34
35당신은 이제 모든파일이 로컬시스템이 추가 되었습니다 그리고 이제 키맵을 추가하거나 컴파일, 프로그램 업로드(flashing)를 할 수 있습니다.
36모든 추가 변경을 만든 뒤에는 add, commit, and push를 사용하여 당신의 Folk에 추가 할 수 있습니다.
37
38```
39user@computer:~$ git add .
40user@computer:~$ git commit -m "adding my keymap"
41[master cccb1608] adding my keymap
42 1 file changed, 1 insertion(+)
43 create mode 100644 keyboards/planck/keymaps/mine/keymap.c
44user@computer:~$ git push
45Counting objects: 1, done.
46Delta compression using up to 4 threads.
47Compressing objects: 100% (1/1), done.
48Writing objects: 100% (1/1), 1.64 KiB | 0 bytes/s, done.
49Total 1 (delta 1), reused 0 (delta 0)
50remote: Resolving deltas: 100% (1/1), completed with 1 local objects.
51To https://github.com/whoeveryouare/qmk_firmware.git
52 + 20043e64...7da94ac5 master -> master
53```
54
55이로써 당신이 만든 모든 변경들이 당신의 Github의 Folk에 추가 되었습니다. (`https://github.com/<whoeveryouare>/qmk_firmware`)에서 확인하고 "New Pull Request"를 눌러 변경사항을 QMK에 업로드할수 있습니다.
56
57![New Pull Request](http://i.imgur.com/DxMHpJ8.jpg)
58
59이 버튼을 누르면 당신이 만든 모든 변경사항들이 보여질 것입니다. 만약 모든 변경사항이 맘에 든다면 "Create Pull Request"를 눌러 요청을 확정할수 있습니다.
60
61**요청사항이 확정된다고 변경사항이 바로 적용되는 것은 아닙니다.**
62
63![Create Pull Request](http://i.imgur.com/Ojydlaj.jpg)
64
65요청을 한뒤 QMK개발자들은 댓글로 무엇이 변경되었는지 등을 물어 볼수있지만 끝에는 매인 디랙토리로 업로드 될것입니다.
66
67**"Thanks for contributing to QMK :)"**