1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:42:07 +02:00
tldr/pages.ko/common/git-am.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

653 B

git am

패치 파일을 적용하고 커밋 생성. 이메일을 통해 커밋을 받을 때 유용합니다. 패치 파일을 생성할 수 있는 git format-patch도 같이 보세요. 더 많은 정보: https://git-scm.com/docs/git-am.

  • 로컬 패치 파일을 적용하고 커밋:

git am {{경로/대상/파일.patch}}

  • 원격 패치 파일을 적용하고 커밋:

curl -L {{https://example.com/file.patch}} | git apply

  • 패치 파일 적용 과정 중단:

git am --abort

  • 가능한 한 많은 패치 파일을 적용하고, 실패한 부분을 거부 파일로 저장:

git am --reject {{경로/대상/파일.patch}}