mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +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>
24 lines
663 B
Markdown
24 lines
663 B
Markdown
# git rev-list
|
|
|
|
> 리비전(커밋)을 역순으로 나열합니다.
|
|
> 더 많은 정보: <https://git-scm.com/docs/git-rev-list>.
|
|
|
|
- 현재 브랜치의 모든 커밋 나열:
|
|
|
|
`git rev-list {{HEAD}}`
|
|
|
|
- 특정 파일이 변경(추가/편집/제거)된 최신 커밋 출력:
|
|
|
|
`git rev-list {{-n|--max-count}} 1 HEAD -- {{경로/대상/파일}}`
|
|
|
|
- 특정 날짜 이후의 커밋을 특정 브랜치에서 나열:
|
|
|
|
`git rev-list --since "{{2019-12-01 00:00:00}}" {{브랜치_이름}}`
|
|
|
|
- 특정 커밋의 모든 병합 커밋 나열:
|
|
|
|
`git rev-list --merges {{커밋}}`
|
|
|
|
- 특정 태그 이후의 커밋 수 출력:
|
|
|
|
`git rev-list {{태그_이름}}..HEAD --count`
|