# Git 常用命令

# 配置基本信息

当前项目:

git config user.name "Your Local Username"
git config user.email "youremail@example.com"

全局:

git config --global user.name "Your Global Username"
git config --global user.email "youremail@example.com"

查看: git config --list

切换仓库地址 git remote add origin <地址>

# 配置 git 凭证

当前项目:

git config credential.helper store 永久保存

git config credential.helper cache 缓存 15 分钟

全局:

git config --global credential.helper store 全局永久保存

git config --global credential.helper cache 全局缓存 15 分钟