当前位置:   article > 正文

Git config 配置与修改_git 修改config

git 修改config

配置Git config 全局配置,随笔记录


1. 打开Git config 全局配置

# git config --global --list

 2. 修改Git config 全局配置


$ git config --global user.name "magx"
$ git config --global user.mail "maguox14@hotmail.com"

但是除了使用git config --global来配置外,还可以直接打开Git的全局配置文件进行编辑修改。

使用如下命令

$ git config --global --edit

  1. 1. 修改Git config 全局配置
  2. # git config --global *******
  3. [magx@server-76 ~]$ git init
  4. Initialized empty Git repository in /home/magx/.git/
  5. [magx@server-76 ~]$
  6. [magx@server-76 ~]$
  7. [magx@server-76 ~]$ git config --global uesr.name "magx"
  8. [magx@server-76 ~]$ git config --global user.name "magx"
  9. [magx@server-76 ~]$ git config --global user.mail "maguox14@hotmail.com"
  10. [magx@server-76 ~]$
  11. 2. 打开Git config 全局配置
  12. # git config --global --list
  13. [magx@server-76 ~]$ git config --global --list
  14. uesr.name=magx # 书写错误,待删除
  15. user.name=magx
  16. user.mail=maguox14@hotmail.com
  17. [magx@server-76 ~]$

 

3. 修改global config 全局配置

  1. [magx@server-76 ~]$ git config --global --edit
  2. [magx@server-76 ~]$

修改后查看global config

  1. [magx@server-76 ~]$ git config --global --list
  2. uesr.name=magx
  3. user.name=magx
  4. user.mail=maguox14@hotmail.com
  5. [magx@server-76 ~]$

 到此git config 全局配置编辑方式,已讲解结束

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

闽ICP备14008679号