git config配置文件中选项的修改

git config配置文件中选项的修改,第1张

git配置的增删改查

1.用git config —global —add user.name rhc

add表明他有多个这种键值对

能够依据这个键查询这个值git config user.name

也能够用git config —get user.name来查询

通过以上两个命令查询,得出username是add进去的rhc

2.查看配置使用

hxgdeMacBook-Pro:~ hxg$ git config -l

3.删除

hxgdeMacBook-Pro:~ hxg$ git config --global --unset user.emall

再查:

hxgdeMacBook-Pro:~ hxg$ git config -l

credential.helper=osxkeychain

filter.lfs.required=true

filter.lfs.clean=git-lfs clean -- %f

filter.lfs.smudge=git-lfs smudge -- %f

filter.lfs.process=git-lfs filter-process

user.name=hxg

user.email=xxx@qq.com

如果有两个相同的选项如:

user.name=hxg

user.name=hx x xxg

这种则需要在 hxgdeMacBook-Pro:~ hxg$ git config --global --unset user.name后面加rhc

可以用git config命令来设置,比如可以使用以下命令:

git config --global core.maxObjectSize 200k

这将设置git只允许pull文件大小不超过200KB。

良好的配置有助于提高效率,减少不必要的错误。把运行配置的相关内容单拎出来放到这里,查找和更新方便。

git config credential.helper store

不再需要每次输入账号密码

查看 /.git-credential、 /.gitconfig、每个工程下的 .git/config 文件可了解更多。.git-credential 文件记录的都是明文,比较危险。建议使用: git config credential.helper cache ,具体查看 git help credentials 。

git config --global credential.helper 'cache --timeout=8640000' # 100天 在 linux下使用。

使用 http 方式访问 git repo 时,假如你密码忘记了,或者服务端不小心清空了你的账号密码,那么 git 会返回 403,但并没有如你所期d出输入账号密码的提示框, 怎么办 ?

Git 有很多 GUI 客户端软件 。git 包中通常包含 git gui 和 gitk 这两个内置 tools。在 gitk 中配合使用 git gui。

windows git bash 使用 git config --unset 原有user.email和user.name,--add 新的之后,windows下 git clone 提示:

原因:“Windows 凭据”记录了原账号/密码,而该账号确实未加入该企业。windows 搜索“凭据”,修改即可。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11318191.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存