侧边栏壁纸
博主头像
阿波兹博主等级

行动起来,活在当下

  • 累计撰写 46 篇文章
  • 累计创建 12 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

配置git信息

Aquiver
2023-05-05 / 0 评论 / 0 点赞 / 31 阅读 / 508 字 / 正在检测是否收录...

配置git信息

git config user.name 李四;
git config user.email xx@163.com;

git config --global user.email "xx@163.com"
git config --global user.name "owl38383"

github代理

cd myproject
git config http.proxy http://127.0.0.1:10809

配置项目代理

配置 .git/config
[http]
proxy = socks5://127.0.0.1:10808
[https]
proxy = socks5://127.0.0.1:10808

0

评论区