# 初始化一个新的Git仓库
git init
# 添加文件到暂存区
git add <file>
# 提交暂存区的更改到仓库
git commit -m "commit message"
# 查看当前仓库的状态
git status
# 查看提交历史
git log
# 查看文件的改动
git diff <file>
# 创建一个新分支
git branch <branch-name>
# 切换到一个已存在的分支
git checkout <branch-name>
# 合并分支
git merge <branch-name>
# 删除分支
git branch -d <branch-name>
# 推送到远程仓库
git push <remote> <branch>
# 拉取远程仓库的更改
git pull <remote> <branch>
# 克隆远程仓库到本地
git clone <repository>
# 添加远程仓库地址
git remote add <remote> <url>
# 拉取所有远程分支的更新
git fetch --all
# 设置Git的用户名和邮箱
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
使用命令行管理git项目 设置tag
git tag -a v1.0.0 -m "My version 1.0.0"