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:
코드싸이
2024-10-08 00:22:02 +09:00
committed by GitHub
parent ac12fcc17a
commit 0819a11434
164 changed files with 2692 additions and 60 deletions

View File

@@ -1,17 +1,21 @@
# git am
> 패치 파일을 적용한다. 이메일 커밋을 받을 때 유용.
> 패치 파일을 생성 할 수 있는 `git format-patch` 또한 참고.
> 패치 파일을 적용하고 커밋 생성. 이메일을 통해 커밋을 받을 때 유용합니다.
> 패치 파일을 생성할 수 있는 `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}}`