1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:22:08 +02:00
tldr/pages.ko/common/git-reflog.md
코드싸이 0819a11434
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>
2024-10-08 00:22:02 +09:00

16 lines
404 B
Markdown

# git reflog
> 로컬 Git 저장소의 브랜치, 태그, HEAD 등의 변경사항을 로그로 보여줍니다.
> 더 많은 정보: <https://git-scm.com/docs/git-reflog>.
- HEAD의 변경된 기록을 표시:
`git reflog`
- 지정된 브랜치의 변경된 기록을 표시:
`git reflog {{브랜치_이름}}`
- 변경된 기록의 최근 5개 항목만 표시:
`git reflog {{-n|--max-count}} 5`