详解推送Git分支时发生的 cannot lock ref 错误

在码云上建了一个项目仓库,分支模型使用 git-flow ,并在本地新建了一个功能分支 feature/feature-poll。后来在推送时发生错误,提示 cannot lock ref ...... 这样的错误信息。下面复盘一下具体过程和解决办法,以供参考。

在码云中建立仓库时,考虑到想按照 GitFlow 的模式来管理仓库,所以在新建的时候,仓库的分支模型选用 git-flow,各分支的名称也保持使用默认值,同时还勾选上 ” 初始化仓库”。

详解推送Git分支时发生的 cannot lock ref 错误_第1张图片

创建仓库,码云将为仓库预建好上图提供名称的5个分支。

将远程仓库克隆到本地。假定码云仓库地址为
https://gitee.com/forestk/test-git-flow.git, 克隆到Windows系统下的E盘:

E:\> git clone https://gitee.com/forestk/test-git-flow.git
Cloning into 'test-git-flow'...
......

 进入 test-git-flow 子目录,查看分支情况

E:\> cd test-git-flow
E:\test-git-flow> git branch -a
* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/develop
  remotes/origin/feature
  remotes/origin/hotfix
 

你可能感兴趣的:(git,github)