visual studio 团队管理器 同步 代码错误记录

时间:2021-06-01 00:21:59

这几天在熟悉git,gitlab,今天在使用vs2015和vs2012的团队管理器,调试把不同的开发人员的开发代码同步到git服务器上。

今天用一个新的developoer用户在新设备提取了git服务器上的代码,稍作修改后执行 提交 ,同步 。

在同步时出错显示

Errors encountered during push. See the Output window for details.

 

输出框提示:

The following errors were reported during push:
 refs/heads/master, pre-receive hook declined

 

解决方法:

原因是这个流程还没理解。

如果用root用户肯定是可以的。

但是developoer用户,需要在本地建立分支。然后提交。然后由root来合并

 

后来的做法是:由root在gitlab上面给每个master建立一个branch-dev的分支,给大家提交开发。这个是有权限的。只是需要在push的时候要指定分支。

git push origin branch-dev