# Git使用 * 创建仓库: git init / git clone * 添加文件: git add / git commit * 查看修改: git status / git diff * 恢复文件: git log / git reset 请点击[Git使用](https://codechina.csdn.net/courses/register/1/3){target="_blank"} 并完成所有题目,完成学习请关闭Issue。 以下哪些命令是[Git使用](https://codechina.csdn.net/courses/register/1/3){target="_blank"}里最后一节总结的命令? ## 答案 ```bash git init git clone git add git commit git status git diff git log git reset git reflog ``` ## 选项 ### A ```bash git init git clone git add git commit git status git diff git log git reset git branch ``` ### B ```bash git init git clone git add git commit git status git diff git log git checkout git reflog ``` ### C ```bash git init git clone git add git commit git status git switch git log git reset git reflog ```