当前位置:   article > 正文

git 常用命令 config_git 查看config

git 查看config

查看 config

仓库级别的   local      git工作区间             config文件
全局级别的   global     c盘user路径下           config文件
系统级别的   system     git安装目录etc文件夹下   config文件
  • 1
  • 2
  • 3
git config -l                 查看 所有级别 配置信息
git config -l | grep core     正则匹配查询  配置信息

git config --local -l         查看 仓库级别 git 配置信息
git config --global -l        查看 全局级别 git 配置信息
git config --system -l        查看 系统级别 git 配置信息

# 最高优先级
git config --local --list --show-origin   查看仓库级别 git 配置信息 并打印配置文件本地路径
git config --local -l --show-origin

# 中间优先级
git config --global --list --show-origin  查看全局级别 git 配置信息 并打印配置文件本地路径
git config --global -l --show-origin

# 最低优先级
git config --system --list --show-origin  查看系统级别 git 配置信息 并打印配置文件本地路径
git config --system -l --show-origin
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

[Ref] Git 如何快速查询 git config 配置文件的本地路径

编辑 config

git config --local -e                             编辑.git/config文件,会自动调notepad++
git config --global -e                                                                                      
git config --system -e 

git config --global user.email "xxxxx@qq.com"     修改属性
git config --global user.name "xxxxx"             修改属性
git config --global --add user.age 10             增加属性
git config --global --unset user.age              删除属性

git config --global push.default simple           simple方式,不带任何参数的 git push,默认 只推送 当前分支
git config --global push.default matching         matching方式,会推送 所有 有对应的远程分支 的本地分支
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

git命令起别名

git config --global alia.st status                给命令配置别名,比如用st代替status
  • 1

git bash 中文显示为数字 问题修复

git config --global core.quotepath false          修正 git bash 中中文显示为数字
  • 1

[Ref] git bash中 中文显示为数字

设置编码格式

locale                                            查看编码设置
export LC_ALL=en_US.UTF-8                         设置编码属性
  • 1
  • 2

push时CRLF的设置

git config –global core.autocrlf true     git 在 push 时 crlf → lf,pull时 lf → crlf, 本地crlf,仓库lf (默认值)
git config –global core.autocrlf false    git 在 push 和 pull 的时候不转换
git config –global core.autocrlf input    git 在 push 时 crlf → lf,pull时不转换,本地lf,仓库lf (为了消除失误引入的CRLF)
  • 1
  • 2
  • 3

[Ref] Git LF和CRLF问题解决记录
问题:在windows下面修改代码然后push,然后在linux下面pull,就会出现CRLF的警告,然后提示出现致命错误不能pull代码需要先push本地修改的代码。
原因:Linux系统和windows系统下的换行符不一样;Linux是’\n’既LF,windows下面确实’\r\n’既CRLF。
git的默认设置是push的时候会把CRLF转换成LF而pull的时候会把LF转换成CRLF。

忽略文件

如果不希望文件被git管理起来

1. 仓库的根目录下创建一个.gitignore文件;
2. 把这个.gitignore文件 commit;
3. .gitignore文件追加不被管理的内容;
  • 1
  • 2
  • 3
  • 4
  • 5

Further Reading :Git常用命令汇总

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

闽ICP备14008679号