mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-19 14:35:26 +02:00
git-am: add Korean translation (#8955)
This commit is contained in:
parent
3b3ee12564
commit
d25ee7fce8
1 changed files with 17 additions and 0 deletions
17
pages.ko/common/git-am.md
Normal file
17
pages.ko/common/git-am.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# git am
|
||||
|
||||
> 패치 파일을 적용한다. 이메일로 커밋을 받을 때 유용함.
|
||||
> 패치 파일을 생성 할 수 있는 `git format-patch` 또한 참고.
|
||||
> 더 많은 정보: <https://git-scm.com/docs/git-am>.
|
||||
|
||||
- 패치 파일 적용:
|
||||
|
||||
`git am {{경로/대상/파일.patch}}`
|
||||
|
||||
- 패치 파일 적용 프로세스 중단:
|
||||
|
||||
`git am --abort`
|
||||
|
||||
- 가능한 많은 수의 패치 파일 적용, 실패한 파일은 거절 파일에 저장:
|
||||
|
||||
`git am --reject {{경로/대상/파일.patch}}`
|
Loading…
Add table
Reference in a new issue