git-*: add and update Korean translation (#14031)
* git-a*: add and update Korean translation * git-b*: add and update Korean translation * git-*: add and update Korean translation * Update git-standup.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
17
pages.ko/common/git-format-patch.md
Normal file
17
pages.ko/common/git-format-patch.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# git format-patch
|
||||
|
||||
> .patch 파일 준비. 커밋을 이메일로 전송할 때 유용합니다.
|
||||
> 생성된 .patch 파일을 적용할 수 있는 `git am`도 참고하세요.
|
||||
> 더 많은 정보: <https://git-scm.com/docs/git-format-patch>.
|
||||
|
||||
- 푸시되지 않은 모든 커밋에 대한 자동 이름 지정 `.patch` 파일 생성:
|
||||
|
||||
`git format-patch {{origin}}`
|
||||
|
||||
- 두 개의 리비전 사이의 모든 커밋에 대한 `.patch` 파일을 `stdout`으로 출력:
|
||||
|
||||
`git format-patch {{revision_1}}..{{revision_2}}`
|
||||
|
||||
- 최근 3개의 커밋에 대한 `.patch` 파일 생성:
|
||||
|
||||
`git format-patch -{{3}}`
|
Reference in New Issue
Block a user