git
Posted ghming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git相关的知识,希望对你有一定的参考价值。
本地仓库与远程仓库关联
1.从远程克隆一份到本地可以通过git clone
Git支持HTTPS和SSH协议,SSH速度更快
$ git clone [email protected]:nanfei9330/xx.git
2.本地库关联远程库,在本地仓库目录运行命令:
git remote add origin [email protected]:/GRLGRL/iqiyi.test // :后面的换成自己项目的地址
3.推送master分支的所有内容,在推送之前先要pull下远程版本
git pull origin master --allow-unrelated-histories
git push -u origin master (第一次push加上-u参数,以后就可以直接使用git push origin master)
--------------------- 本文来自 南乡紫 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/u012804035/article/details/78259560?utm_source=copy
以上是关于git的主要内容,如果未能解决你的问题,请参考以下文章