码迷,mamicode.com
首页 > 其他好文 > 详细

git实现本地仓库与GitHub的连接--只提供一种方式

时间:2020-05-13 12:26:12      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:font   sans   history   ros   ping   style   ons   pre   本地   

1. 本地新增项目

touch README.md

git init

git add README.md

git commit -m "first commit"

git remote add origin https://XXX.git  仓库地址

git push -u origin master

git remote add origin https://XXX.git

git push -u origin master

 

2.遇到问题,fatal: refusing to merge unrelated histories

可以在pull命令后紧接--allow-unrelated-history选项来解决问题

$git pull origin master --allow-unrelated-histories

 

git实现本地仓库与GitHub的连接--只提供一种方式

标签:font   sans   history   ros   ping   style   ons   pre   本地   

原文地址:https://www.cnblogs.com/nieliangcai/p/12881166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!