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:
@@ -7,26 +7,30 @@
|
||||
|
||||
`git add {{경로/대상/파일}}`
|
||||
|
||||
- 모든 파일 추가 (추적된 파일 및 추적되지 않은 파일 모두):
|
||||
- 모든 파일 추가 (추적된 파일 및 추적되지 않은 파일):
|
||||
|
||||
`git add -A`
|
||||
`git add {{-A|--all}}`
|
||||
|
||||
- 이미 추적 중인 파일만 추가:
|
||||
- 현재 폴더의 모든 파일 추가:
|
||||
|
||||
`git add -u`
|
||||
`git add .`
|
||||
|
||||
- 이미 추적된 파일만 추가:
|
||||
|
||||
`git add {{-u|--update}}`
|
||||
|
||||
- 무시된 파일도 추가:
|
||||
|
||||
`git add -f`
|
||||
`git add {{-f|--force}}`
|
||||
|
||||
- 파일 일부를 대화적으로 스테이징:
|
||||
- 파일의 일부를 대화식으로 스테이징:
|
||||
|
||||
`git add -p`
|
||||
`git add {{-p|--patch}}`
|
||||
|
||||
- 특정 파일의 일부를 대화적으로 스테이징:
|
||||
- 지정된 파일의 일부를 대화식으로 스테이징:
|
||||
|
||||
`git add -p {{경로/대상/파일}}`
|
||||
`git add {{-p|--patch}} {{경로/대상/파일}}`
|
||||
|
||||
- 파일을 대화적으로 스테이징:
|
||||
- 파일을 대화식으로 스테이징:
|
||||
|
||||
`git add -i`
|
||||
`git add {{-i|--interactive}}`
|
||||
|
Reference in New Issue
Block a user