Skip to main content
git 版本控制管理

git版本管理

git版本管理常用命令

基础配置命令

# 配置用户信息
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

# 查看配置信息
git config --list

风不止About 2 mingitversion management