第一次创建git仓库之后与本地合并
第一次创建git仓库之后与本地合并
操作步骤
- git init // 初始化仓库
- git add .(文件name) // 添加文件到本地仓库
- git commit -m "first commit" // 添加文件描述信息
- git remote add origin + 远程仓库地址 // 链接远程仓库,创建主分支
- git pull origin master // 把本地仓库的变化连接到远程仓库主分支
git push -u origin master // 把本地仓库的文件推送到远程仓库
如果此时出现:Updates were rejected because the tip of your current branch is behind
错误
使用强制合并:git pull origin master --allow-unrelated-histories
一般只会在第一次出现,主要是因为在创建git时自动创建了其他文件,例如readme.md等
再执行6步骤- git remote set-url origin + 远程仓库地址 //修改远程仓库地址
https://blog.csdn.net/weixin_43845090/article/details/111994916
» 本文链接:https://blog.apires.cn/archives/376.html
» 转载请注明来源:Java地带
» 《第一次创建git仓库之后与本地合并》
» 本文章为Java地带整理创作,欢迎转载!转载请注明本文地址,谢谢!
» 部分内容收集整理自网络,如有侵权请联系我删除!
» 订阅本站:https://blog.apires.cn/feed/