一、git删除全局配置
- 查看Git所有配置 git config --list
- 删除全局配置项
- 终端执行命令:git config --global --unset user.name
- 编辑配置文件:git config --global --edit
- 替换Git中的配置
- git config --global --replace-all user.name "你的 git 的名称"
- git config --global --replace-all uesr.email "你的 git 的邮箱"
二、Git 常用命令速查表
三、重新设置git远程仓库地址
- git remote set-url origin <URL>
- 其中, origin 是远程仓库的名称, <URL> 是您要设置的远程仓库的URL。
- 例如,如果要将远程仓库的URL设置为 https://github.com/yourusername/yourrepository.git ,可以执行以下命令:
- git remote set-url origin https://github.com/yourusername/yourrepository.git
- 请确保将 <URL> 替换为您实际的远程仓库URL