0
点赞
收藏
分享

微信扫一扫

git查看、修改、删除属性,配置提交commit用户名和邮箱

witmy 2024-09-07 阅读 4


1. 查看

查看所有

git config            --list

git config --worktree --list

git config --local    --list

git config --global   --list

git config --system   --list

2. 设置

git config --local user.name lishuo

git config --local user.email lishuo@qq.com

3. 删除

git config --local --unset user.name


举报

相关推荐

0 条评论