在 gitlab 上新建了一个工程后,添加了 README 作为第一次提交。在本地目标文件夹下执行:
创新互联建站服务项目包括溧阳网站建设、溧阳网站制作、溧阳网页制作以及溧阳网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,溧阳网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到溧阳省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
git init; git clone <工程url> 后将工程 commit 到本地,准备 push 时候发生了
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
错误。原因是准备推送的地址和原来的地址不一致(我也不知道为啥)。
解决方法:
vim .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = git@gitlab.xxx:xxx/xxx.git <此处是你的工程链接地址>
fetch = +refs/heads/*:refs/remotes/origin/*
pushurl = git@gitlab.xxx:xxx/xxx.git <此处是你的工程链接地址>
[branch "master"]
remote = origin
merge = refs/heads/master
再执行git pull --allow-unrelated-histories
就可以push了
网站栏目:git初始化
文章起源:http://scgulin.cn/article/gesgee.html