zoukankan      html  css  js  c++  java
  • 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/*' 

  • 相关阅读:
    lambda表达式
    Shiro身份认证---转
    反转数组
    HashMap去重
    开发工具软件下载地址
    setInterval的使用和停用
    手机端的META
    spring自定义参数绑定(日期格式转换)
    mybatis注解动态sql
    SpringMVC文件上传
  • 原文地址:https://www.cnblogs.com/caiyao/p/11418521.html
Copyright © 2011-2022 走看看