Remote: Conan Add
A "remote" is simply a server that hosts Conan packages. Think of it like a remote Git repository (GitHub/GitLab) but for compiled binaries and recipes. By adding a remote, you allow Conan to: for packages globally. Upload your own built packages for teammates to use. Download pre-compiled binaries to save hours of build time. The Basic Syntax To add a new remote, the syntax is straightforward: conan remote add [VERIFY_SSL] [TYPE] Use code with caution.
: A nickname you give the server (e.g., my-company-artifactory ). URL : The full web address of the Conan repository. conan add remote
For internal testing environments using self-signed SSL certificates, you can bypass verification (not recommended for production): A "remote" is simply a server that hosts Conan packages
Think of Conan remotes exactly like Git remotes. Just as git remote add origin https://github.com/user/repo.git links your local repository to a shared server, conan add remote links your local Conan cache to a Conan server. This server could be: Upload your own built packages for teammates to use
: (Conan 2.x) A shorthand for skipping SSL verification.
If a server URL changes, you don't need to delete and re-add; just update:
If you need to change the URL of a remote (e.g., your Artifactory server moved):