一、基本指令
1. 配置用户名和邮箱
git
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
2. 初始化仓库
git
git init
3. 克隆仓库
git
git clone <repository_url>
4. 查看当前状态
git
git status
5. 添加文件到暂存区
git
git add <file_name>
# 添加所有文件
git add .
6. 提交更改
git
git commit -m "Commit message"
二、分支管理
1. 查看分支
git
git branch
2. 创建新分支
git
git branch <branch_name>
3. 切换分支
git
git checkout <branch_name>
4. 创建并切换到新分支
git
git checkout -b <branch_name>
5. 删除分支
git
git branch -d <branch_name>
三、合并与重置
1. 合并分支
git
git merge <branch_name>
2. 解决合并冲突
手动解决文件中的冲突后,添加解决冲突的文件并提交:
git
git add <conflicted_file>
git commit -m "Resolved merge conflict"
3. 重置到某个提交
git
git reset --hard <commit_id>
四、远程仓库
1. 查看远程仓库
git
git remote -v
2. 添加远程仓库
git
git remote add origin <repository_url>
3. 推送代码到远程仓库
git
git push origin <branch_name>
4. 拉取远程仓库的代码
git
git pull origin <branch_name>
五、查看日志
1. 查看提交历史
git
git log
2. 查看简洁的提交历史
git
git log --oneline
六、比较差异
1. 查看工作区与暂存区的差异
git
git diff
2. 查看暂存区与最后一次提交的差异
git
git diff --cached
3. 查看最近一次Git提交的增删行数信息:
sh
git diff --stat HEAD~1 HEAD