Google Cloud Source Repositories:更改默认分支?
Google Cloud Source Repositories: change default branch?
使用 GCP CSR,是否可以将存储库的默认分支从 master
更改为其他分支?除了首先显示在 CSR UI 中的分支之外,这对功能没有太大影响。但是,这是我可以在 GitHub.
中更改的内容
不,您不能将默认分支从 master 更改为 Google Cloud Source 存储库中的分支。但是,我用来直接到达 UI 中的分支的一个技巧是遵循此 link:
https://source.cloud.google.com/<project-id>/<repo-name>/+/<branch-name>
git config --global init.defaultBranch <name>
应该可以解决问题
使用 GCP CSR,是否可以将存储库的默认分支从 master
更改为其他分支?除了首先显示在 CSR UI 中的分支之外,这对功能没有太大影响。但是,这是我可以在 GitHub.
不,您不能将默认分支从 master 更改为 Google Cloud Source 存储库中的分支。但是,我用来直接到达 UI 中的分支的一个技巧是遵循此 link:
https://source.cloud.google.com/<project-id>/<repo-name>/+/<branch-name>
git config --global init.defaultBranch <name>
应该可以解决问题