-
添加与取消代理(局部)
1# 添加代理 其中7890是clash对外暴露的端口 2git config http.proxy http://127.0.0.1:7890 3git config https.proxy https://127.0.0.1:7890 4 5# 去掉代理 6git config --unset http.proxy 7git config --unset https.proxy
-
添加与取消代理(全局)
1# 添加代理 2git config --global http.proxy http://127.0.0.1:7890 3git config --global https.proxy https://127.0.0.1:7890 4 5# 去掉代理 6git config --global --unset http.proxy 7git config --global --unset https.proxy
-
git
添加别名在Windows系统中需要在
$PWD/etc/bash.bashrc
的尾部添加类似如下内容1alias git-log="git log --abbrev-commit --pretty=oneline --graph" 2alias git-logs="git log --pretty=format:%h%x09%an%x09%ad%x09%s --graph --date=format:'%Y-%m-%d %H:%M:%S'"
Git常用指令