Managing Configuration
lip allows you to configure global settings that affect how it interacts with remote services.
Viewing Configuration
To see all current configuration settings:
sh
lip config listTo get the value of a specific key:
sh
lip config get <key>Example:
sh
lip config get github_proxySetting Configuration
To set a configuration value:
sh
lip config set <key> <value>Common Settings
github_proxy: A URL to use as a proxy for GitHub requests.go_module_proxy: A URL for a Go module proxy (default:https://goproxy.io).
Example:
sh
lip config set github_proxy https://ghproxy.comDeleting Configuration
To remove a setting and revert to its default (if any):
sh
lip config delete <key>