1.基本命令
1.1 设置签名
bash
git config --global user.email xxx
git config --global user.name xxx
1.2 初始化本地库
bash
git init
1.3 查看本地库状态
bash
git status
1.4 查看历史版本
bash
git reflog 查看版本信息
git reflog -n 数量
git log 查看版本详细信息