1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 12:55:28 +02:00

git-annotate: add Korean translation (#8958)

This commit is contained in:
Jessica (Ji Sun) Lee 2022-10-15 00:40:46 -04:00 committed by GitHub
parent 81e904111a
commit d1345e5873
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,12 @@
# git annotate
> 각각의 파일란에 커밋한 해쉬와 마지막 작성자를 보여 줍니다. 깃 어노테이트 보다 많이 사용되는 깃 블레임을 살펴 보세요. 깃 어노테이트는 다른 버전 관리 시스템에 친숙한 분들께 제공됩니다.
> 더 많은 정보: <https://git-scm.com/docs/git-annotate>.
- 각각의 라인에 작성자의 이름과 커밋 해쉬를 앞쪽에 더하여 파일 출력:
`git annotate {{경로/대상/파일}}`
- 각각의 라인에 작성자의 이메일과 커밋 해쉬를 앞쪽에 더하여 파일 출력:
`git annotate -e {{경로/대상/파일}}`