Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.92 KB

File metadata and controls

52 lines (36 loc) · 1.92 KB

bitrise-cli config

Manage CLI configuration (defaults persisted to a YAML file)

Synopsis

Manage persistent CLI configuration.

Storage: Global file: YAML at $XDG_CONFIG_HOME/bitrise/config.yaml (falls back to ~/.config/bitrise/config.yaml). Per-dir: .bitrise-cli.yml in the current directory or any ancestor. Useful for per-project app_id pinning.

Precedence at runtime: flag > env > per-directory file > global file > built-in default

Recognized keys: output, app_id, default_workspace_id, api_base_url, rde_api_base_url, web_base_url, theme

Environment overrides for the same values: BITRISE_OUTPUT, BITRISE_APP_ID, BITRISE_WORKSPACE_ID, BITRISE_TOKEN, BITRISE_API_BASE_URL, BITRISE_RDE_API_BASE_URL, BITRISE_WEB_BASE_URL, BITRISE_CLI_THEME

Note: 'set'/'unset' modify only the global file. Per-directory files must be edited by hand.

To manage your access token, use 'bitrise-cli auth login/logout/status'.

Options

  -h, --help   help for config

Options inherited from parent commands

      --no-color        disable ANSI colors (NO_COLOR env is also honored)
  -o, --output string   output format: human|json (default "human")
  -q, --quiet           suppress non-error diagnostic messages
      --theme string    color theme: auto|dark|light|none (default "auto"; overrides terminal background detection)

SEE ALSO