mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:02:09 +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>
21 lines
706 B
Markdown
21 lines
706 B
Markdown
# 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 {{원격_이름}}`
|