一、创建标题Git仓库
1、已经有项⽬代码
$ cd 项目代码在的文件夹
$ git init
2、新的项⽬目代码
cd 某个⽂文件夹
git init your_project_name #会在当前路路径下创建和项⽬目名称同名的⽂文件夹
cd your_project_name
二、设置用户信息
git config ---local user.name ‘青云’
git config --local user.email ‘i@eastbeauty.cn’
三、新增文件并做一次提交
touch README.md
git add README.md
git commit -m"Add README"
四、查看提交日志
git log