Git 发表于 2020-08-15 更新于 2020-11-01 分类于 cheatbook 本文字数: 792 阅读时长 ≈ 1 分钟 Git密码中特殊字符12! # $ & ' ( ) * + , / : ; = ? @ [ ]%21 %23 %24 %26 %27 %28 %29 %2A %2B %2C %2F %3A %3B %3D %3F %40 %5B %5D proxy1234567891011121314151617# httpgit config --global http.proxy http://127.0.0.1:1080git config --global https.proxy http://127.0.0.1:1080# socks5git config --global http.proxy "socks5://127.0.0.1:1080"git config --global https.proxy "socks5://127.0.0.1:1080"git config --global --unset http.proxygit config --global --unset https.proxy# sshtee ~/.ssh/config<<EOFHost github.com ProxyCommand connect -H 127.0.0.1:1080 %h 22 ServerAliveInterval 10EOF config123456# 意思是 提交时 CRLF 转 LFgit config --global core.autocrlf inputgit config --global http.sslVerify falsegit config --global user.name "user"git config --global user.email "email"git config --global help.format man key1ssh-keygen -t rsa -C "email" -b 4096 本文作者: l1b0k 本文链接: http://l1b0k.github.com/posts/69c3279c.html 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!