We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb7994 commit 15a0431Copy full SHA for 15a0431
README.md
@@ -94,7 +94,7 @@ git help -g
94
```
95
96
## 回到远程仓库的状态
97
-抛弃本地仓库的所有版本(commit),回到远程仓库的状态。
+抛弃本地所有的修改,回到远程仓库的状态。
98
```sh
99
git fetch --all && git reset --hard origin/master
100
@@ -413,8 +413,11 @@ git clean -X -f
413
414
415
## 展示所有alias和configs
416
+**注意:** config分为:当前目录(local)和全局(golbal)的config,默认为当前目录的config
417
+
418
-git config --list
419
+git config --local --list (当前目录)
420
+git config --global --list (全局)
421
422
423
## 展示忽略的文件
0 commit comments