mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* 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>
17 lines
603 B
Markdown
17 lines
603 B
Markdown
# 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}}`
|