diff options
author | Baumgarten <baumgarten@localhost.localdomain> | 2019-04-13 19:51:41 +0300 |
---|---|---|
committer | Baumgarten <baumgarten@localhost.localdomain> | 2019-04-13 19:51:41 +0300 |
commit | 2aab1fd231f2af3a0f0a5888a7d5bb5cd079ceb6 (patch) | |
tree | 94e527f54c793942cd8cbc2a18fb86edbf06cb9d /man | |
parent | 52e329f4385b73923a343e413cd36f7323448e6d (diff) | |
download | bundler-2aab1fd231f2af3a0f0a5888a7d5bb5cd079ceb6.tar.gz |
Add git and branch options to `bundle add`
Diffstat (limited to 'man')
-rw-r--r-- | man/bundle-add.ronn | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/man/bundle-add.ronn b/man/bundle-add.ronn index 1e2d732ec6..26cbe55647 100644 --- a/man/bundle-add.ronn +++ b/man/bundle-add.ronn @@ -3,7 +3,7 @@ bundle-add(1) -- Add gem to the Gemfile and run bundle install ## SYNOPSIS -`bundle add` <GEM_NAME> [--group=GROUP] [--version=VERSION] [--source=SOURCE] [--skip-install] [--strict] [--optimistic] +`bundle add` <GEM_NAME> [--group=GROUP] [--version=VERSION] [--source=SOURCE] [--git=GIT] [--branch=BRANCH] [--skip-install] [--strict] [--optimistic] ## DESCRIPTION Adds the named gem to the Gemfile and run `bundle install`. `bundle install` can be avoided by using the flag `--skip-install`. @@ -30,6 +30,12 @@ bundle add rails --group "development, test" * `--source`, , `-s`: Specify the source for the added gem. +* `--git`: + Specify the git source for the added gem. + +* `--branch`: + Specify the git branch for the added gem. + * `--skip-install`: Adds the gem to the Gemfile but does not install it. |