1. 初始化仓库
- git init - 初始化本地Git仓库
2. 配置用户信息
- git config --global user.name "yourname" - 配置用户名
- git config --global user.email "email@example.com" - 配置邮件
3. 添加修改文件
- git add <filename> - 添加文件到暂存区
- git add . - 添加所有修改过的文件到暂存区
- git mv <old> <new> - 重命名文件
4. 提交修改
- git commit -m "commit message" - 提交暂存区内容,添加提交信息
- git commit --amend - 修改最近一次的提交信息
5. 查看提交历史
- git log - 查看提交日志
- git log -p <file> - 查看指定文件提交历史
- git blame <file> - 以列表方式查看指定文件的提交历史
6. 撤销修改
- git checkout -- <file> - 撤销工作区文件修改
- git reset --hard HEAD^ - 撤销最近一次提交
- git revert <commit-id> - 撤销指定的提交
7. 分支管理
- git branch - 显示所有分支
- git branch <branchname> - 创建新分支
- git checkout <branchname> - 切换分支
- git merge <branchname> - 合并分支到当前分支
8. 远程操作
- git remote -v - 查看远程仓库信息
- git remote add <name> <url> - 添加远程仓库
- git push <remote> <branch> - 推送至远程
- git pull <remote> - 拉取远程内容