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

@@ -1,35 +1,35 @@
# git branch
> 브랜치 작업을 위한 주요 Git 명령어.
> Git 브랜치 작업을 위한 주요 명령어.
> 더 많은 정보: <https://git-scm.com/docs/git-branch>.
- 모든 브랜치(로컬 및 원격; 현재 브랜치는 `*`로 강조됨) 나열:
- 모든 브랜치 나열 (로컬 및 원격; 현재 브랜치는 `*`로 강조):
`git branch --all`
- 특정 Git 커밋을 기록에 포함하는 브랜치 나열:
- 특정 Git 커밋을 포함한 브랜치 나열:
`git branch --all --contains {{커밋_해시}}`
- 현재 브랜치 이름 표시:
- 현재 브랜치 이름 표시:
`git branch --show-current`
- 현재 커밋을 기으로 새로운 브랜치 생성:
- 현재 커밋을 기으로 새 브랜치 생성:
`git branch {{브랜치_이름}}`
- 특정 커밋을 기으로 새로운 브랜치 생성:
- 특정 커밋을 기으로 새 브랜치 생성:
`git branch {{브랜치_이름}} {{커밋_해시}}`
- 브랜치 이름 변경 (체크아웃되지 않은 상태여야 함):
- 브랜치 이름 변경 (현재 체크아웃된 브랜치가 아니어야 함):
`git branch -m {{이전_브랜치_이름}} {{새로운_브랜치_이름}}`
`git branch {{-m|--move}} {{이전_브랜치_이름}} {{새_브랜치_이름}}`
- 로컬 브랜치 삭제 (체크아웃되지 않은 상태여야 함):
- 로컬 브랜치 삭제 (현재 체크아웃된 브랜치가 아니어야 함):
`git branch -d {{브랜치_이름}}`
`git branch {{-d|--delete}} {{브랜치_이름}}`
- 원격 브랜치 삭제: