Git在本页GIT1、基本命令1.1、查询远程仓库用于显示当前仓库的所有远程仓库及其对应的 URL:git remote -v1.2、更新提交账户信息git config --global user.name "你的名字"git config --global user.email "你的邮箱@example.com"如果只想更新当前项目git config user.name "你的名字"git config user.email "你的邮箱@example.com"1.3、修改远程仓库地址git remote set-url origin <new-url>