美文网首页
git之我的配置

git之我的配置

作者: Afra55 | 来源:发表于2020-10-26 09:44 被阅读0次

查看 git 用户名邮箱

git config user.name
git config user.email

修改 git 用户名邮箱

git config --global user.name "鸡蛋绝缘体"
git config --global user.email "email"

修改提交缓存大小(可选)

修改提交缓存大小为500M,或者更大的数字
git config --global http.postBuffer 524288000
# some comments below report having to double the value:
git config --global http.postBuffer 1048576000

配置git的最低速度和最低速度时间:

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

不压缩文件

git config --global core.compression 0

查看 git HTTP代理

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

取消 git HTTP代理

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

相关文章

  • Git 快速使用

    MENU Git 快速使用 之 配置并获取SSH公钥Git 快速使用 之 Git 分支 branchGit 快速使...

  • git之我的配置

    查看 git 用户名邮箱 修改 git 用户名邮箱 修改提交缓存大小(可选) 配置git的最低速度和最低速度时间:...

  • Git:知识回顾

    一、起步之Git的设置与配置 Git的配置分为系统级别—system、用户级别—global和仓库级别—local...

  • git配置用户和邮箱

    查看git用户配置 查看git邮箱配置 配置git用户 配置git邮箱

  • 在游戏中学习Git之Githug(Windows版)

    在游戏中学习Git之Githug(Windows版) 1. githug安装 首先,下载Git工具,并配置Git工...

  • GIT之提交日志中文配置

    GIT之提交日志中文配置 Linux 文件提交编码格式 git config --global i18n.comm...

  • Git

    Git安装配置 Git安装 Git初始配置 跟踪文件 git config

  • centos 7上安装配置git

    安装git yum install git 配置git 配置git 用户名 git config --global...

  • git 配置

    显示当前的Git配置 $ git config --list 编辑Git配置文件 $ git config -e ...

  • git 使用记录

    【git配置】gitconifg --list #查看git配置...

网友评论

      本文标题:git之我的配置

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