at, bugreportz, bundle: update Korean translation (#14582)

This commit is contained in:
HoJeong Im
2024-11-03 02:05:33 +09:00
committed by GitHub
parent 208b9d05f6
commit ac18a99f14
3 changed files with 38 additions and 10 deletions

View File

@@ -7,14 +7,30 @@
`bundle install`
- 현재 번들의 컨텍스트에서 명령을 실행:
`bundle exec {{명령어}} {{인자}}`
- `Gemfile` 에 정의된 규칙에 따라 모든 gem을 업데이트 하고 `Gemfile.lock`을 재생성:
`bundle update`
- `Gemfile`에 정의된 특정 gem을 업데이트:
- `Gemfile`에 정의된 하나 이상의 특정 gem을 업데이트:
`bundle update --source {{gem}}`
`bundle update {{gem_이름1}} {{gem_이름2}}`
- 새로운 gem의 스켈레톤 생성:
- `Gemfile`에 정의된 하나 이상의 특정 gem을 다음 패치 버전으로만 업데이트:
`bundle gem {{gem}}`
`bundle update --patch {{gem_이름1}} {{gem_이름2}}`
- `Gemfile`에서 지정된 그룹 내의 모든 gem을 업데이트:
`bundle update --group {{development}}`
- 최신 버전이 있는 `Gemfile`에 설치된 gem을 나열:
`bundle outdated`
- 새로운 gem 스켈레톤을 생성:
`bundle gem {{gem_이름}}`