Skip to content

Commit

Permalink
Add: doc#81
Browse files Browse the repository at this point in the history
  • Loading branch information
tsq committed Sep 14, 2021
1 parent bc6c2b0 commit a5f7aee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,7 @@ VS Code的用户界面由5个部分组成,每一个部分里面都包含了很
- [78 文件使用技巧34: 将VS Code设置为Git Commit的默认编辑器](#78-文件使用技巧34-将vs-code设置为git-commit的默认编辑器)
- [79 文件使用技巧35: 使用Timeline查看任意两个commit的差异](#79-文件使用技巧35-使用timeline查看任意两个commit的差异)
- [80 文件使用技巧36: 使用code命令查看两个文件的差异](#80-文件使用技巧36-使用code命令查看两个文件的差异)
- [81 文件使用技巧37: 利用临时文件查看差异](#81-文件使用技巧37-利用临时文件查看差异)

#### 41 文件及文件夹的三个特点

Expand Down Expand Up @@ -1335,6 +1336,16 @@ VS Code的**Timeline**会显示出某个文件的所有git提交记录,有时
code -d a.txt b.txt
```

#### 81 文件使用技巧37: 利用临时文件查看差异

在项目开发的过程中,如果我们需要查看两段文本的差异,而这两段文本并不来自于项目当中的两个文件,这时候我们可以借助新建两个临时文件的方式,将比较在临时文件中进行,比较完成之后再对两个临时文件进行销毁。

具体做法是:新建两个临时文件,将两段文本分别粘贴到临时文件1和临时文件2中,然后:

1. 右键第一个临时文件,选择`Select for Compare`
2. 右键另一个临时文件,选择`Compare with Selected`


### 第四章 自定义VS Code
### 第五章 代码编辑技巧
### 第六章 开发中的具体使用
Expand Down

0 comments on commit a5f7aee

Please sign in to comment.