跳到主要内容

GIT

1、基本命令

1.1、查询远程仓库

用于显示当前仓库的所有远程仓库及其对应的 URL:

git remote -v

1.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>