当前位置:   article > 正文

Ubuntu下设置git代理不成功_ubuntu 命令行代理失效

ubuntu 命令行代理失效

一、之前使用命令设置git,发现不成功,这里直接修改git的config文件

  1. 先看看 配置
ydh@ydh-VirtualBox:/mnt/hgfs/ubshare$ git config -l
http.https://github.com.proxy=http://192.168.0.100:1080
https.https://github.com.proxy=http://192.168.0.100:1080
git.proxy=http://192.168.1.6:1080
  • 1
  • 2
  • 3
  • 4
  1. 看看 -help
ydh@ydh-VirtualBox:/mnt/hgfs/ubshare$ git config -help
usage: git config [<options>]

Config file location
    --global              use global config file
    --system              use system config file
    --local               use repository config file
    -f, --file <file>     use given config file
    --blob <blob-id>      read config from given blob object

Action
    --get                 get value: name [value-regex]
    --get-all             get all values: key [value-regex]
    --get-regexp          get values for regexp: name-regex [value-regex]
    --get-urlmatch        get value specific for the URL: section[.var] URL
    --replace-all         replace all matching variables: name value [value_regex]
    --add                 add a new variable: name value
    --unset               remove a variable: name [value-regex]
    --unset-all           remove all matches: name [value-regex]
    --rename-section      rename section: old-name new-name
    --remove-section      remove a section: name
    -l, --list            list all
    -e, --edit            open an editor
    --get-color           find the color configured: slot [default]
    --get-colorbool       find the color setting: slot [stdout-is-tty]

Type
    --bool                value is "true" or "false"
    --int                 value is decimal number
    --bool-or-int         value is --bool or --int
    --path                value is a path (file or directory name)

Other
    -z, --null            terminate values with NUL byte
    --name-only           show variable names only
    --includes            respect include directives on lookup

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  1. 直接通过 --e命令来修改
git config --global -e

  • 1
  • 2
  1. crtl+x 退出
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/656931
推荐阅读
相关标签
  

闽ICP备14008679号