Merge pull request '更新 'README.md'' (#1) from zyimm-patch-1 into master
Reviewed-on: #1
This commit is contained in:
commit
b41d3dc53a
16
README.md
16
README.md
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user