1 自报家门
$ git config --global user.name '你的名字'
$ git config --global user.email '你的邮箱地址'
2 初始化版本库
$ git init
初始化完成后文件夹中会自动创建一个隐藏的文件夹.git,里面存放一些配置信息
3 创建一个文本
$ touch a.txt
4 添加到缓存区
$ git add a.txt
5 提交到本地仓库
$git commit -m '新建一个a.txt'
$ git config --global user.name '你的名字'
$ git config --global user.email '你的邮箱地址'
$ git init
初始化完成后文件夹中会自动创建一个隐藏的文件夹.git,里面存放一些配置信息
$ touch a.txt
$ git add a.txt
$git commit -m '新建一个a.txt'