1、到腾讯软件下载git安装包(https://pc.qq.com/detail/13/detail_22693.html),按默认设置安装;
2、安装好以后,右击自己的首个项目,选择git bash here

3、$ ssh-keygen -t rsa -C "123456@qq.com"
在bash输入以上指令生存私钥和公钥
4、打开公钥,复制到码云的SSH公钥,标题随便起


5、配置全局变量
$ git config --global user.email "xxxxxx@qq.com"
$ git cogit config --global user.name "xxxxx"
6、通过git init命令把这个目录变成Git可以管理的仓库:
$ git init
将本地的库链接到远端:(origin我误写成了orgin.....)
$ git remote add orgin https://gitee.com/youngorange/gitee-myfirst.git
提交之前先pull(前面把origin写错所以下面只能将错就错...)
$ git pull orgin master
会出现Are you sure you want to continue connecting (yes/no/[fingerprint])?的提示,输入yes然后按回车继续往下运行。这是因为文件夹内少了一个known_hosts文件,本来密钥文件应该是三个,现在只有两个,便报了这样的错误,此时输入yes回车之后,生成了缺少了的known_hosts文件,便可解决这个问题
重新pull一次:
$ git pull orgin master
把目标文件加入仓库,输入.表示把该目录下所有文件加入仓库
$ git add .
执行上面的命令,没有任何显示,这就对了,Unix的哲学是“没有消息就是好消息”,说明添加成功。
用命令git commit告诉Git,把文件提交到仓库(-m参数输入的内容是提交说明):
$ git commit -m "my first commit"

把提交到仓库的内容推到远端:
$ git push orgin master
