代码之家  ›  专栏  ›  技术社区  ›  KyleMit Steven Vachon

如何在Fiddler中检查git流量

  •  0
  • KyleMit Steven Vachon  · 技术社区  · 6 年前

    类似于关于使用的问题 a proxy (like fiddler) to intercept requests made from Node.js ,是否可以收听git的通信

    checkout commit
    但是远程命令,比如 push pull 应该发出网络请求

    1 回复  |  直到 6 年前
        1
  •  2
  •   KyleMit Steven Vachon    6 年前

    根据威尔·安德森在 Inspecting Git Traffic in Fiddler ,您可以通过设置git配置将git流量路由到fidler:

    git config --global http.proxy 127.0.0.1:8888
    git config --global http.sslVerify false
    

    然后,完成后,通过调用 --unset 在配置属性上:

    git config --global --unset http.proxy
    git config --global --unset http.sslVerify