Merge pull request '更新 'README.md'' (#1) from zyimm-patch-1 into master

Reviewed-on: #1
This commit is contained in:
zyimm 2023-01-04 03:59:23 +00:00
commit b41d3dc53a

View File

@ -558,7 +558,7 @@ git diff --word-diff
## 清除 gitignore 文件中记录的文件
```sh
```shell
git clean -X -f
```
@ -566,13 +566,13 @@ git clean -X -f
**注意:** config 分为当前目录local和全局golbal的 config默认为当前目录的 config
```sh
```shell
git config --local --list (当前目录)
git config --global --list (全局)
```
## 展示忽略的文件
```sh
```shell
git status --ignored
```
@ -582,13 +582,13 @@ git log Branch1 ^Branch2
```
## 在 commit log 中显示 GPG 签名
```sh
```shell
git log --show-signature
```
## 删除全局设置
```sh
```shell
git config --global --unset <entry-name>
```
@ -596,18 +596,18 @@ git config --global --unset <entry-name>
相当于保存修改,但是重写 commit 历史
```sh
```shell
git checkout --orphan <branch-name>
```
## 展示任意分支某一文件的内容
```sh
```shell
git show <branch-name>:<file-name>
```
## clone 下来指定的单一分支
```sh
```shell
git clone -b <branch-name> --single-branch https://github.com/user/repo.git
```