1.安装git
官网地址: https://git-scm.com/
下载安装
2.配置用户信息
$ git config --global user.name “github’s Name”
$ git config --global user.email "github@xx.com"
$ git config --list
3.先创建远端仓库
远程创建仓库,本地直接clone
git clone (your url 远程仓库的地址)
4.创建本地仓库与远端关联
本地创建仓库 git init 提交本地内容
git init
git add --all
git commit -m"init"
关联远端仓库 git remote add 然后获取远端内容
git remote add origin https://gitee.com/xx/xx.git
git pull origin master
报错
refusing to merge unrelated histories (拒绝合并不相关的历史)
合并两个独立启动仓库的历史--allow-unrelated-history 执行:
git pull origin master --allow-unrelated-histories
报错
Automatic merge failed; fix conflicts and then commit the result.
自动融合失败,手动解决冲突,保存提交。
关联成功
网友评论