error: src refspec XXX matches more than one
error: dst refspec v1.0 matches more than one.
error: failed to push some refs to ''
错误原因是 branch名和tag名有相同的,在执行git push origin :branchName时,就会报上面的错
删除branch:
git branch -r -d origin/branch-name //只能使用这个命令来删除branch,下面的命令不可以。
如何把git仓库(包含所有提交历史)迁移到gitlab
在gitlab上new 一个project
跳转到本地的git 目录中,运行命令
git remote add gitlab gitlab_new_project_address
-最后运行如下命令,将本地git仓库push到server:
git push gitlab master
...