设置缓存大小
设置http缓存为1000M(大小可以根据需要自行更改)
git config --global http.postBuffer 1048576000
设置https缓存为1000M
git config --global https.postBuffer 1048576000
设置代理
设置代理:
git config --global https.proxy http://127.0.0.1:30800
git config --global https.proxy https://127.0.0.1:30800
上面端口改成自己的。
取消代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
查看git配置
git config -l
查看git全局配置
git config --global --list
查看git系统设置
git config --system --list
设置全局用户名和邮箱
git config --global user.name "name"
git config --global user.email "github@xx.com"
git config --list
设置当前工程的用户名和邮箱
git config user.name "name"
git config user.email "github@xx.com"
设置和取消代理:
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
git分支
有道无术,术尚可求。有术无道,止于术。
# 列出所有本地分支
git branch
# 列出所有远程分支
git branch -r
# 新建一个分支
git branch dev
# 切换分支
git checkout -b dev
# 合并指定分支道当前分支
git merge dev
# 删除分支
git branch -d dev
# 删除远程分支
git push origin --delete dev