1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/git-format-patch.md
코드싸이 0819a11434
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>
2024-10-08 00:22:02 +09:00

603 B

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}}