标题党。。
一、安装
1、下载 -> https://git-scm.com/downloads -> 然后安装,安装完成以后右击git bash输入git init是否已有git
2、设置名字、邮箱
$ git congig --global user.name 'Your Name'
$ git congig --global user.email 'Email@example.com'
3、查看公钥
##进入ssh目录下查看是否已生成公钥
$ cd ~/.ssh
4、创建公钥
##输入完一路回车
$ ssh-keygen -t ras -C 'youremail@example.com'
5、添加公钥
二、本地新建的
6、新建版本库(用git clone的时候不要新建)
##在本地任意文件夹下创建(假设这是在F:\test文件夹下)
$ git init
7、码云新建项目
8、关联这个远程仓库
$ git remote add origin git@gitee.com:Ewall/goodvoice.git
9、将文件夹添加(add)、提交(commit)、发布(push)
##添加新的文件到暂存区,比如添加一个txt文本或其他(F:\test文件夹下)
$ git add .
##从暂存区提交到git管理区
$ git commit -m "备注描述文字"
##从git管理区push到远程仓库
$ git push origin master
##第一次发布的时候要加点东西
$ git push -u origin master
三、克隆别人的(记得先fork)
10、克隆(clone),克隆注意就不用git init本地新建初始化了,拿过来直接用
$ git clone git@gitee.com:Ewall/goodvoice.git
11、修改完提交发布主要还是前面的3步
##从本地提交到暂存区(一个'.'表示只要修改过的都提交,你也可以输文件名)
$ git add .
##从暂存区提交到git管理区
$ git commit -m 'description备注'
##这里插一步,先pull一下,避免出错(git pull = git fetch + git merge)
$ git pull
##从git管理区push到远程仓库
$ git push origin master
12、完
如果你想深入学习,请参考:
https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000