-
Git 常用命令配置 二
设置代理 设置 git config --global https.proxy http://127.0.0.1:1087 git config --global http.proxy http://127.0.0.1:1087 查看 git config --global --get http...
-
Git 常用命令配置
查看全局配置列表 git config -l 查看局部配置列表 git config --local --list 查看已设置的全局用户名/邮箱 git config --global --get user.name git config --global --get user.email 设置全局...