git
一只考考拉
大数据开发工程师
展开
-
git pull过程中常遇到的几种问题
1.error: Pull is not possible because you have unmerged files. 产生原因:local文件冲突 解决办法1:如果想放弃本地的文件修改,可以使用git reset --hard FETCH_HEAD 解决办法2:git commit -a提交再push 2.error: you need to resolve your cur...原创 2019-12-02 14:12:35 · 1006 阅读 · 0 评论 -
git克隆及 配置ssh
1.git克隆文件又两种方式第一种http:git clonehttps://github.xxxx.xxx.com/xxx/xxx.git 第二种ssh:git clonegit@github.xxx.xxxx.com:xxx/xxxx.git 2.想要是用ssh克隆就得配置ssh ssh-keygen -t rsa cd ~/.ssh cat ~/.ssh/id_rsa.pub ...原创 2019-07-08 15:00:59 · 3482 阅读 · 0 评论