Conan | Add Remote
conan remote add myrepo https://new-url.example.com --force
| Scenario | Recommendation | |----------|----------------| | | Use ConanCenter (usually pre-added). | | Private/company packages | Add your own Artifactory/Cloud repo above ConanCenter ( --insert=0 ). | | Multiple remotes | Order matters: most trusted/important remotes first. | | CI/CD | Use conan remote add in your pipeline to ensure custom repos are known. | | Authentication | Remotes requiring login need conan user after adding. | conan add remote
You can browse what packages are available on a specific remote without installing them: conan remote add myrepo https://new-url
If you are using a self-signed certificate for an internal server, you may need to toggle SSL: conan remote add --verify-ssl False (Use with caution). | | CI/CD | Use conan remote add
If you'd like to dive deeper into specific setups, let me know: a local Artifactory or Nexus server Automating remote additions in CI/CD scripts Troubleshooting SSL or authentication errors