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:
21
pages.ko/common/git-feature.md
Normal file
21
pages.ko/common/git-feature.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# git feature
|
||||
|
||||
> 기능 브랜치를 생성하거나 병합.
|
||||
> 기능 브랜치는 feature/<이름> 형식을 따릅니다.
|
||||
> 더 많은 정보: <https://github.com/tj/git-extras/blob/master/Commands.md#git-feature>.
|
||||
|
||||
- 새 기능 브랜치를 생성하고 전환:
|
||||
|
||||
`git feature {{기능_브랜치}}`
|
||||
|
||||
- 기능 브랜치를 병합 커밋을 생성하며 현재 브랜치에 병합:
|
||||
|
||||
`git feature finish {{기능_브랜치}}`
|
||||
|
||||
- 기능 브랜치를 하나의 커밋으로 합쳐서 현재 브랜치에 병합:
|
||||
|
||||
`git feature finish --squash {{기능_브랜치}}`
|
||||
|
||||
- 특정 기능 브랜치의 변경 사항을 원격 대응 브랜치로 전송:
|
||||
|
||||
`git feature {{기능_브랜치}} --remote {{원격_이름}}`
|
Reference in New Issue
Block a user