分类 Git 下的文章

设置仅github.com使用代理

git config --global http.https://github.com.proxy socks5h://localhost:1280

取消以上设置

git config --global --unset http.https://github.com.proxy

配置文件

[http "https://github.com"]
        proxy = socks5://127.0.0.1:1086
https://stackoverflow.com/questions/16067534/only-use-a-proxy-for-certain-git-urls-domains/18712501#18712501 crifan

日志
[年月日时分秒 消息内容] ,--grep筛选内容,--since筛选指定时间之后的记录

git log --date=format:'%Y-%m-%d %H:%M:%S' --pretty=format:"%cd %s" --since="2024-09-29" --grep="筛选消息内容" --reverse

git 设置用户名邮箱:

对当前项目生效:

git config user.name 'your username'
git config user.email 'your email'

对全局生效,加上 --global:

git config --global user.name 'your username'
git config --global user.email 'your email'

设置git的代理:

对当前项目生效:

git config http.proxy socks5h://localhost:1080

socks5h 远端 dns 解析,socks5 本地 dns 解析。

对全局生效,加上 --global:

git config --global http.proxy socks5h://localhost:1080

- 阅读剩余部分 -