git从码云上下载更新提交代码
Posted xxlfly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git从码云上下载更新提交代码相关的知识,希望对你有一定的参考价值。
1.安装git
在官网上直接下载安装,这一步直接点击即可。
2.配置Git
1.Windows下,在需要clone的路径上直接右键“Git Bash Here“。
2.配置信息
$ git config --global user.name "your name"
$ git config --global user.email "your email"
注意:your name和your email分别是你的用户名和邮箱。
3.配置SSH
在命令行输入ssh-keygen -t rsa -C "your email"
在相应目录下找到id_rsa.pub文件,复制到相应的码云或者GitHub的SSH配置中。
4clone代码
$ git cloone git@git.oschina.net:***/miaoda_v2.git
其中git@git.oschina.net:***/miaoda_v2.git是你的项目SSH的地址。
下载服务器代码:$ git pull origin master
以上是关于git从码云上下载更新提交代码的主要内容,如果未能解决你的问题,请参考以下文章