mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-05 03:56:25 +03:00
0819a11434
* 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>
701 B
701 B
git blame
파일의 각 줄에 커밋 해시와 마지막 작성자를 표시. 더 많은 정보: https://git-scm.com/docs/git-blame.
- 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
git blame {{경로/대상/파일}}
- 각 줄에 작성자 이메일과 커밋 해시를 표시하여 파일 출력:
git blame {{-e|--show-email}} {{경로/대상/파일}}
- 특정 커밋에서 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
git blame {{커밋}} {{경로/대상/파일}}
- 특정 커밋 이전의 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:
git blame {{커밋}}~ {{경로/대상/파일}}