I’m hosting a configuration in a repo on GitHub. If I keep the repo public all’s good, but if I make it private I face:
org.eclipse.jgit.errors.TransportException: https://github.com/my-user/my-repo: Authentication is required but no CredentialsProvider has been registered
the property I use to target the repo is
spring.cloud.config.server.git.uri=https://github.com/my-user/my-repo
What should I do to configure this properly with the private repo, thanks
Advertisement
Answer
you need to add the
spring.cloud.config.server.git.username=your_github_username spring.cloud.config.server.git.password=your_github_password
and things should workout for you