Connect to Google Cloud Source Repository from Antora

Viewed 426
2 Answers

At the moment Cloud Source Repositories doesn't support this kind of user/password pair authentication. Here is a similar issue for eclipse.

The only supported ways to authenticate at the moment are described in the Public Documentation

If I understood your requirement correctly, you want to connect to GCP source code repository externally to push code. If so you need to use service account with source code repository access rights. Choose appropriate roles using below URL:

https://cloud.google.com/source-repositories/docs/reference/rest

Refer below mentioned URL for connecting to source code repository once you are authenticated and do git operations.

https://cloud.google.com/source-repositories/docs/authentication

Please let me know if this is what you are looking for.

Hope this helps.

Related