Git 的基本操作
1.本地结构
工作区–>暂存区 –> 本地库
2.基础操作
- 本地库初始化
git init - 添加签名
git config user.name <yourname>
git config user.email <yourEmail>
- 状态查看操作
git status
- 添加工作区文件至暂存区
git add <filename>
全部文件提交
git add --all
- 提交操作
git commit -m "commit message" <filename>
- 查看历史记录的方式
git reflog
可以查看索引值 7. 版本的前进和后退
git reset --hard [索引值]
8. 删除文件并找回
删除前提交到了本地库` git reset --hard [指针位置]` 未提交 `git reset --hard HEAD`