参考文档
清理已配置选项。
git config user.name 'test' 配置当前分支下的选项
git config --global user.name 'test' 配置全局选项
git config --list 查看Git所有配置
git config --global --unset user.name 删除全局配置项
git config --global --edit 编辑全局配置文件
git config --show-origin --get credential.helper 查询git保密设置文件路径
git代码流迁移:
git clone xxxx --> git remote set-url origin xxxxxnew -->get push origin xx
网友评论