learn.md 884 字节
Newer Older
F
feilong 已提交
1 2
# Git使用

F
rename  
feilong 已提交
3 4 5 6
* 创建仓库: git init / git clone
* 添加文件: git add / git commit
* 查看修改: git status / git diff
* 恢复文件: git log / git reset
F
feilong 已提交
7

F
feilong 已提交
8
请点击[Git使用](https://codechina.csdn.net/courses/register/1/3){target="_blank"} 并完成所有题目,完成学习请关闭Issue。
F
rename  
feilong 已提交
9

F
feilong 已提交
10
以下哪些命令是[Git使用](https://codechina.csdn.net/courses/register/1/3){target="_blank"}里最后一节总结的命令?
F
feilong 已提交
11 12 13 14

## 答案

```bash
F
feilong 已提交
15 16 17 18 19 20 21 22 23
git init
git clone
git add
git commit
git status
git diff
git log
git reset
git reflog
F
feilong 已提交
24 25 26 27 28 29 30
```

## 选项

### A

```bash
F
feilong 已提交
31 32 33 34 35 36 37 38 39
git init
git clone
git add
git commit
git status
git diff
git log
git reset
git branch
F
feilong 已提交
40 41 42 43 44
```

### B

```bash
F
feilong 已提交
45 46 47 48 49 50 51 52 53
git init
git clone
git add
git commit
git status
git diff
git log
git checkout
git reflog
F
feilong 已提交
54 55 56 57 58
```

### C

```bash
F
feilong 已提交
59 60 61 62 63 64 65 66 67
git init
git clone
git add
git commit
git status
git switch
git log
git reset
git reflog
F
feilong 已提交
68
```