git配置代理

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

作者:汪小九
链接:https://www.zhihu.com/question/27159393/answer/141047266
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
git config --global https.https://github.com.proxy socks5://127.0.0.1:1086

作者:汪小九
链接:https://www.zhihu.com/question/27159393/answer/141047266
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

git log日期格式化:   git log --date=format:'%Y-%m-%d %H:%M:%S'

git log --reverse --after='2001-09-18 16:29:48' --date=format:'%Y-%m-%d %H:%M:%S'   按照日期正序排序某天之后的日志。 日志里的时间格式化

git tag --sort=taggerdate -ln 'releases/lucene/*' 

原文地址:https://www.cnblogs.com/caiyao/p/11418521.html