入门指南可参考
廖雪峰Git指南
常用命令:
配置全局用户名邮箱:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
配置代理
## [git配置代理命令](https://www.cnblogs.com/gx1069/p/6840413.html)
// 查看当前代理设置
git config --global http.proxy
// 设置当前代理为 http://127.0.0.1:1080 或 socket5://127.0.0.1:1080
git config --global http.proxy 'http://127.0.0.1:1080'
git config --global https.proxy 'http://127.0.0.1:1080'
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080' /
/ 删除 proxy git config --global --unset http.proxy
git config --global --unset https.proxy
查看当前仓库的状态
git status
如果显示
On branch master
nothing to commit, working tree clean
那么你当前的工作区的内容都提交到了本地仓库。