美文网首页
Git常用操作

Git常用操作

作者: Anne_胖达 | 来源:发表于2020-03-17 13:52 被阅读0次

    设置代理

    git config --global http.proxy 'proxy address' 
    git config --global https.proxy 'proxy address'
    

    比如git config --global https.proxy 'http://127.0.0.1:1081'

    查看代理

    git config --global --get http.proxy
    git config --global --get https.proxy
    

    取消代理

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

    修改全局用户名与邮箱

    git config --global user.name "username"
    git config --global user.email email
    

    查看全局用户名邮箱

    git config --global --get user.name 
    git config --global --get user.email 
    

    修改当前工程用户名与邮箱

    git config user.name "username"
    git config user.email email
    

    查看当前工程用户名邮箱

    git config --get user.name 
    git config --get user.email 
    

    查看所有分支

    git branch -a
    

    相关文章

      网友评论

          本文标题:Git常用操作

          本文链接:https://www.haomeiwen.com/subject/mxltyhtx.html