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>
17 lines
535 B
Markdown
17 lines
535 B
Markdown
# git whatchanged
|
|
|
|
> 최근 커밋 또는 파일의 변경 사항을 보여줍니다.
|
|
> 같이 보기: `git log`.
|
|
> 더 많은 정보: <https://git-scm.com/docs/git-whatchanged>.
|
|
|
|
- 최근 커밋의 로그와 변경 사항 표시:
|
|
|
|
`git whatchanged`
|
|
|
|
- 지정된 시간 범위 내에서 최근 커밋의 로그와 변경 사항 표시:
|
|
|
|
`git whatchanged --since="{{2 hours ago}}"`
|
|
|
|
- 특정 파일 또는 디렉토리에 대한 최근 커밋의 로그와 변경 사항 표시:
|
|
|
|
`git whatchanged {{경로/대상/파일_또는_폴더}}`
|