7

I'm having trouble finding where is the Pull the request feature of Google Cloud Repository. I need it to setup the project that I'm currently working on for other developers, by having a code review feature.

enter image description here

onecompileman
  • 900
  • 7
  • 14

1 Answers1

0

As it is in this doc:

From a local repository, you can use the standard set of Git commands to interact with the repository in the cloud, including push, pull, clone, and log.

You can use just git to use it. If you click clone and "Manually generated credentials" you will have access to copy git clone statement:

git clone https://<link_to_your_google_repo>

Than you can use as well

git pull https://<link_to_your_google_repo>

You can check docs here as well.

vitooh
  • 4,132
  • 1
  • 5
  • 16