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

@@ -0,0 +1,28 @@
# git shortlog
> `git log` 출력을 요약.
> 더 많은 정보: <https://git-scm.com/docs/git-shortlog>.
- 작성자 이름별로 알파벳 순으로 그룹화된 모든 커밋 요약 보기:
`git shortlog`
- 커밋 수에 따라 정렬된 모든 커밋 요약 보기:
`git shortlog {{-n|--numbered}}`
- 커미터의 신원(이름과 이메일)별로 그룹화된 모든 커밋 요약 보기:
`git shortlog {{-c|--committer}}`
- 마지막 5개의 커밋 요약 보기(즉, 리비전 범위 지정):
`git shortlog HEAD~{{5}}..HEAD`
- 현재 브랜치에서 모든 사용자, 이메일 및 커밋 수 요약 보기:
`git shortlog {{-s|--summary}} {{-n|--numbered}} {{-e|--email}}`
- 모든 브랜치에서 모든 사용자, 이메일 및 커밋 수 요약 보기:
`git shortlog {{-s|--summary}} {{-n|--numbered}} {{-e|--email}} --all`