|
|
@ -92,7 +92,7 @@ Git是一个 “分布式版本管理工具”,简单的理解版本管理工
|
|
|
|
* [在 commit log 中查找相关内容](#在-commit-log-中查找相关内容)
|
|
|
|
* [在 commit log 中查找相关内容](#在-commit-log-中查找相关内容)
|
|
|
|
* [把暂存区的指定 file 放到工作区中](#把暂存区的指定-file-放到工作区中)
|
|
|
|
* [把暂存区的指定 file 放到工作区中](#把暂存区的指定-file-放到工作区中)
|
|
|
|
* [强制推送](#强制推送)
|
|
|
|
* [强制推送](#强制推送)
|
|
|
|
* [git配置http,socks代理](#git配置http,socks代理)
|
|
|
|
* [git 配置 http 和 socks 代理](#git-配置-http-和-socks-代理)
|
|
|
|
* [git配置ssh代理](#git配置ssh代理)
|
|
|
|
* [git配置ssh代理](#git配置ssh代理)
|
|
|
|
* [一图详解](#一图详解)
|
|
|
|
* [一图详解](#一图详解)
|
|
|
|
* [优雅的提交Commit信息](#优雅的提交Commit信息)
|
|
|
|
* [优雅的提交Commit信息](#优雅的提交Commit信息)
|
|
|
@ -653,7 +653,7 @@ git reset <file-name>
|
|
|
|
git push -f <remote-name> <branch-name>
|
|
|
|
git push -f <remote-name> <branch-name>
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## git配置http,socks代理
|
|
|
|
## git 配置 http 和 socks 代理
|
|
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
```sh
|
|
|
|
git config --global https.proxy 'http://127.0.0.1:8001' # 适用于 privoxy将socks协议转为http协议的http端口
|
|
|
|
git config --global https.proxy 'http://127.0.0.1:8001' # 适用于 privoxy将socks协议转为http协议的http端口
|
|
|
|