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:
33
pages.ko/common/git-changelog.md
Normal file
33
pages.ko/common/git-changelog.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# git changelog
|
||||
|
||||
> 저장소 커밋 및 태그에서 변경 로그 보고서를 생성.
|
||||
> `git-extras`의 일부.
|
||||
> 더 많은 정보: <https://github.com/tj/git-extras/blob/master/Commands.md#git-changelog>.
|
||||
|
||||
- 최신 Git 태그 이후의 커밋 메시지로 기존 파일을 업데이트하거나 새 `History.md` 파일을 생성:
|
||||
|
||||
`git changelog`
|
||||
|
||||
- 현재 버전의 커밋 나열:
|
||||
|
||||
`git changelog --list`
|
||||
|
||||
- `2.1.0` 태그부터 현재까지의 커밋 범위 나열:
|
||||
|
||||
`git changelog --list --start-tag {{2.1.0}}`
|
||||
|
||||
- `0.5.0` 태그와 `1.0.0` 태그 사이의 커밋 범위를 보기 좋게 나열:
|
||||
|
||||
`git changelog --start-tag {{0.5.0}} --final-tag {{1.0.0}}`
|
||||
|
||||
- 커밋 `0b97430`과 태그 `1.0.0` 사이의 커밋 범위를 보기 좋게 나열:
|
||||
|
||||
`git changelog --start-commit {{0b97430}} --final-tag {{1.0.0}}`
|
||||
|
||||
- 출력 파일로 `CHANGELOG.md` 지정:
|
||||
|
||||
`git changelog {{CHANGELOG.md}}`
|
||||
|
||||
- 현재 변경 로그 파일의 내용을 완전히 교체:
|
||||
|
||||
`git changelog --prune-old`
|
Reference in New Issue
Block a user