1、全局设置代理
--global
指定全局
git config --global http.proxy 'http://127.0.0.1:8087'
2、全局删除代理
git config --global --unset http.proxy
3、查看代理
git config --global --get http.proxy
4、查看全局指定key配置
git config --global user.email
git config --global user.name
5、全局配置用户名密码
git config --global user.email "2434387555@qq.com"
git config --global user.name "zhousiwei"
6、查看所有配置
git config -l
7、取消SSL认证
git config --global http.sslVerify false
8、强制拉取并覆盖本地代码
git fetch --all
git reset --hard origin/master
git pull
关于Fork
及Pull requests
的相关命令
git remote add upstream <原仓库github地址> # 添加正式仓库地址
git remote -v # 查看当前仓库的远程仓库地址和原仓库地址
git checkout master
git fetch upstream # 获取原仓库的更新
git merge upstream/master # 合并到本地分支
git log # 这时候使用git log就能看到原仓库的更新了
git push origin master # 执行git push进行推送
Tips:其他文章