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

@@ -16,18 +16,22 @@
`git tag {{태그_이름}} {{커밋}}`
- 주어진 메시지로 주석이 달린 태그 생성:
- 주어진 메시지로 주석이 달린 태그 생성:
`git tag {{태그_이름}} -m {{태그_메시지}}`
- 주어진 이름을 가진 태그를 삭제:
`git tag -d {{태그_이름}}`
`git tag {{-d|--delete}} {{태그_이름}}`
- 업스트림에서 업데이트된 태그 가져오기:
`git fetch --tags`
- 특정 커밋을 조상으로 포함하는 모든 태그 나열:
- 태그를 원격 저장소에 푸시:
`git push origin tag {{태그_이름}}`
- 주어진 커밋을 포함하는 모든 태그 목록:
`git tag --contains {{커밋}}`