We are hosting git repo on the google cloud platform. I know for github.com, we can use pull requests for code reviews, but google cloud does not seem to provide that.
How do I perform code review for repos on google cloud platform?
We are hosting git repo on the google cloud platform. I know for github.com, we can use pull requests for code reviews, but google cloud does not seem to provide that.
How do I perform code review for repos on google cloud platform?
One possibility (not ideal, I know, but still something) would be to have your cloud repo connected to a GitHub or BitBucket repo which you could use for code reviews instead. From Connecting a Hosted Repository:
You can connect a Cloud Source Repository to a Git repository hosted on GitHub or Bitbucket. When you push changes to the hosted repository, the changes are automatically synchronized with the Cloud Source Repository.
You can use a separate code review app that integrates with Git.
Some open source options including one mentioned in a comment:
A commercial option that goes way beyond just code review, is JetBrains Space, but this may require that they host your repository as well. They previously had a dedicated code review app (Upsource), but it was retired in favor of Space.
One possible solution is vanilla git branches and commits.
I define code review ability as the ability to view commits and code (and perhaps facilitate discussion) before they're mainlined.
review-featureName
branches.And the process repeats. You don't have a web interface, but you could instead work with internal project management tools which have access to the commits to reference them and have a conversation. There are other tools that work off of local copies, provide a GUI, which are covered in other answers to this question.
© 2022 - 2024 — McMap. All rights reserved.