您可以使用 Cloud Source Repositories 创建一个新的空代码库。当您要启动项目或使用 Cloud Source Repositories 备份 Git 代码库时,创建代码库非常有用。
准备工作
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
- 验证您是否拥有最新版本的 Git。
- 如果您尚未在 Git 中配置用户凭据,请按照首次设置说明进行操作。
- 启用 Cloud Source Repositories API。
创建新代码库
您可以使用 Google Cloud 控制台或 gcloud
创建代码库
命令行工具。
控制台
在 Google Cloud 控制台中,打开 Cloud Source Repositories。
点击 添加代码库。
将打开 添加代码库 页面。
选择 创建新代码库,然后单击 继续。
将打开创建新代码库页面。
在代码库名称字段中,输入新代码库的名称。请注意,名称
All-Users
和All-Projects
是受限的名称,不能使用。在 项目 下拉列表中,选择代码库所属的 Google Cloud 项目。
要 创建新的 Google Cloud 项目,请点击 创建项目。
点击创建。
创建您的代码库,然后打开 向代码库添加代码 页面。本页将介绍如何 将代码库克隆到本地机器 或 从现有代码库推送代码 根据您的身份验证类型。
gcloud
从命令行调用以下命令:
gcloud init gcloud source repos create [REPO_NAME]
其中
[REPO_NAME]
是代码库的名称。请注意,名称All-Users
和All-Projects
是受限的名称,不能使用。
创建项目
所有代码库都必须属于 Google Cloud 项目。如果您没有 Google Cloud 项目,则可以按照以下步骤创建一个。
在 创建新代码库 页面 上,点击 创建项目。
此时会打开 创建云项目 对话框。
在 项目名称 字段中,输入 Google Cloud 项目的名称。
在 项目 ID 字段中,接受生成的项目 ID 或点击 编辑项目 ID 输入其他名称。
在 计费账号 下拉列表中,选择一个计费账号。
要创建一个计费账号,请点击 创建计费账号。
点击创建。
您可以继续 创建新的代码库。
后续步骤
既然您在 Cloud Source Repositories 中拥有一个代码库,您现在可以添加代码,其中可能涉及以下两个过程之一:
- 克隆新代码库 您的本地机器
- 从现有代码库推送代码 本地计算机上