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,12 +1,20 @@
# git blame
> 각각의 파일 라인에 커밋 해와 마지막 작성자를 보여줍니다.
> 파일의 각 줄에 커밋 해와 마지막 작성자를 표시.
> 더 많은 정보: <https://git-scm.com/docs/git-blame>.
-각의 라인에 작성자 이름과 커밋 해쉬가 포함된 파일 출력:
-에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
`git blame {{파일이름}}`
`git blame {{경로/대상/파일}}`
-각의 라인에 작성자 이메일과 커밋 해쉬가 포함된 파일 출력:
-에 작성자 이메일과 커밋 해시를 표시하여 파일 출력:
`git blame -e {{파일이름}}`
`git blame {{-e|--show-email}} {{경로/대상/파일}}`
- 특정 커밋에서 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
`git blame {{커밋}} {{경로/대상/파일}}`
- 특정 커밋 이전의 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
`git blame {{커밋}}~ {{경로/대상/파일}}`