summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-15 19:40:39 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-15 19:40:39 +0100
commit1971ba4059f1855d6a4b240c3ea85ec5b1130ea6 (patch)
treec2c8b0b8cd9be0e432c383f635cb4defcdc7a5a0 /man
parent0a396b8f530bec57d19cad5202baa002d74d5e80 (diff)
downloadbundler-1971ba4059f1855d6a4b240c3ea85ec5b1130ea6.tar.gz
Fix docs about `unset` with `--global` / `--local`
They are actually compatible.
Diffstat (limited to 'man')
-rw-r--r--man/bundle-config.ronn8
1 files changed, 7 insertions, 1 deletions
diff --git a/man/bundle-config.ronn b/man/bundle-config.ronn
index 0b61cbeca0..9dc2edbf2a 100644
--- a/man/bundle-config.ronn
+++ b/man/bundle-config.ronn
@@ -34,7 +34,13 @@ Executing `bundle config set --local <name> <value>` will set that configuration
the local application. The configuration will be stored in `app/.bundle/config`.
Executing `bundle config unset <name>` will delete the configuration in both
-local and global sources. Not compatible with --global or --local flag.
+local and global sources.
+
+Executing `bundle config unset --global <name>` will delete the configuration
+only from the user configuration.
+
+Executing `bundle config unset --local <name> <value>` will delete the
+configuration only from the local application.
Executing bundle with the `BUNDLE_IGNORE_CONFIG` environment variable set will
cause it to ignore all configuration.