Skip to main content

Git 常用命令

1. 基础配置

# 配置用户信息
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"

# 配置默认编辑器
git config --global core.editor vim

# 查看配置
git config --list

2. 仓库操作

# 初始化仓库
git init

# 克隆仓库
git clone <repository-url>
git clone <repository-url> <directory>

# 添加远程仓库
git remote add origin <repository-url>

# 查看远程仓库
git remote -v

3. 基本操作

添加和提交

# 添加文件到暂存区
git add <file> # 添加指定文件
git add . # 添加所有文件
git add -p # 交互式添加

# 提交更改
git commit -m "提交信息"
git commit -am "提交信息" # 添加并提交

# 修改最后一次提交
git commit --amend

分支操作

# 查看分支
git branch # 列出本地分支
git branch -r # 列出远程分支
git branch -a # 列出所有分支

# 创建分支
git branch <branch-name>
git checkout -b <branch-name> # 创建并切换

# 切换分支
git checkout <branch-name>
git switch <branch-name> # Git 2.23+ 新语法

# 删除分支
git branch -d <branch-name> # 删除本地分支
git push origin -d <branch-name> # 删除远程分支

4. 同步操作

# 推送更改
git push origin <branch>
git push -u origin <branch> # 设置上游分支

# 拉取更改
git pull origin <branch>
git pull --rebase origin <branch> # 使用rebase方式拉取

# 获取更改
git fetch origin
git fetch --all

5. 查看状态和历史

# 查看状态
git status
git status -s # 简短格式

# 查看历史
git log
git log --oneline # 简短格式
git log --graph # 图形化显示
git log -p <file> # 查看文件修改历史

# 查看差异
git diff # 工作区与暂存区的差异
git diff --staged # 暂存区与最后一次提交的差异
git diff <commit1> <commit2> # 两个提交之间的差异

6. 撤销和重置

# 撤销工作区修改
git checkout -- <file>
git restore <file> # Git 2.23+ 新语法

# 取消暂存
git reset HEAD <file>
git restore --staged <file> # Git 2.23+ 新语法

# 重置到指定提交
git reset --soft <commit> # 保留工作区和暂存区
git reset --mixed <commit> # 保留工作区(默认)
git reset --hard <commit> # 清除所有改动

7. 暂存和合并

# 暂存当前修改
git stash
git stash save "描述信息"

# 查看暂存列表
git stash list

# 应用暂存
git stash pop # 应用并删除最近的暂存
git stash apply # 应用但不删除
git stash drop # 删除暂存

# 合并分支
git merge <branch>
git merge --no-ff <branch> # 保留分支信息
git merge --abort # 取消合并

8. 标签管理

# 创建标签
git tag v1.0
git tag -a v1.0 -m "版本信息"
git tag -a v1.0 <commit-id>

# 查看标签
git tag
git show v1.0

# 推送标签
git push origin v1.0
git push origin --tags # 推送所有标签

# 删除标签
git tag -d v1.0 # 删除本地标签
git push origin :refs/tags/v1.0 # 删除远程标签

9. 高级操作

# 查找提交
git blame <file> # 查看文件的每一行最后修改信息
git bisect start # 二分查找bug引入的提交

# 子模块
git submodule add <repository-url>
git submodule update --init --recursive

# 清理仓库
git clean -n # 列出要清理的文件
git clean -f # 强制清理
git gc # 垃圾回收

# 更改作者信息
git filter-branch --env-filter '
export GIT_AUTHOR_NAME="新名字"
export GIT_AUTHOR_EMAIL="新邮箱"
'

10. 常用别名配置

# 配置常用别名
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.unstage 'reset HEAD --'
git config --global alias.last 'log -1 HEAD'
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"