You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
현재 모든 문서에는 markdown lint가 적용되어 있습니다. 리베이스 이후에 테스트를 하여 린트 규칙을 확인합니다.
194
+
195
+
```sh
196
+
$ npm test
197
+
```
198
+
199
+
또한 local 환경에서 gitbook을 테스트할 수 있습니다.
200
+
201
+
```sh
202
+
$ npm run serve:gitbook
203
+
```
204
+
205
+
http://localhost:4000 에서 번경된 문서를 확인할 수 있습니다.
206
+
207
+
### Step 5: 변경 내용을 Push 하기
208
+
209
+
변경 내용을 clone한 레포지토리에 push합니다.
210
+
211
+
```sh
212
+
$ git push origin issue1234
213
+
```
214
+
215
+
일부 참조가 오래되어 push할 수 없다면 [rebase](#step-3-upstream으로-부터-rebase하기)를 통해 최신 코드를 가져온 후 다시 push 합니다.
216
+
217
+
```sh
218
+
$ git push -f origin issue1234
219
+
```
220
+
221
+
### Step 6: Pull Request 보내기
222
+
223
+
이제 Pull Request를 보낼 준비가 완료되었습니다. Fork된 레포지토리로 이동하여 [Github 문서](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)를 참고하여 Pull Request를 보냅니다.
0 commit comments