mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:22:07 +02:00

* 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>
20 lines
701 B
Markdown
20 lines
701 B
Markdown
# git blame
|
|
|
|
> 파일의 각 줄에 커밋 해시와 마지막 작성자를 표시.
|
|
> 더 많은 정보: <https://git-scm.com/docs/git-blame>.
|
|
|
|
- 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
|
|
|
|
`git blame {{경로/대상/파일}}`
|
|
|
|
- 각 줄에 작성자 이메일과 커밋 해시를 표시하여 파일 출력:
|
|
|
|
`git blame {{-e|--show-email}} {{경로/대상/파일}}`
|
|
|
|
- 특정 커밋에서 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
|
|
|
|
`git blame {{커밋}} {{경로/대상/파일}}`
|
|
|
|
- 특정 커밋 이전의 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
|
|
|
|
`git blame {{커밋}}~ {{경로/대상/파일}}`
|