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