分支
1. master ->默认开发分支
2. origin ->默认远程版本库
3. Head ->默认开发分支
4. Head^ ->Head的父提交
创建
1. git clone ssh://user@xxx.com/xx.git 克隆远程仓库
2. git init 初始化本地git仓库
# 提交历史记录
1. git log 显示日志
2. git show <commit> 显示某个提交的详细内容
3. git blame <file> 在每一行显示commit号,提交者,最早的提交日期
本地更改
1. git status 查看当前版本状态(是否修改)
2. git diff 显示所有未添加至index的变更
3. git diff HEAD 查看已缓存的与未缓存的所有改动
4. git add <path> 将文件添加到缓存
5. git commit -m 'xxx' 提交
6. git commit --amend -m 'xxx' 合并上一次提交(用于反复修改)
7. git commit -am 'xxx' 将add和commit合为一步
分支机构和标签
1. git branch 显示本地分支
2. git checkout <branch> 切换分支
3. git branch <new-branch> 新建分支
4. git branch --track <new> <remote> 创建新分支跟踪远程分支
5. git branch -d <branch> 删除本地分支
6. git tag <tag-name> 给当前分支打标签
更新和发布
1. git remote -v 列出远程分支详细信息
2. git remote show <remote> 显示某个分支信息
3. git remote add <remote> <url> 添加一个新的远程仓库
4. git fetch <remote> 获取远程分支,但不更新本地分支,另需merge
5. git pull <remote> <branch> 获取远程分支,并更新本地分支
6. git push <remote> <branch> 推送本地更新到远程分支
7. git push <remote> --delete <branch> 删除一个远程分支
8. git push --tages 推送本地标签
撤销
1. git reset --hard HEAD 将当前版本重置为HEAD(用于merge失败)
2. git reset --hard <commit> 将当前版本重置到某一个提交状态(谨慎使用!)
3. git reset <commit> 将当前版本重置到某一个提交状态,代码不变
4. git reset --merge <commit> 重置到某一状态,保留版本库中不同的文件
5. git reset --keep <commit> 重置到某一状态,重置变化的文件,代码不变
6. git check HEAD <file> 丢弃本地更改信息并将其存入特定文件
7. git revert <commit> 撤销提交
合并与衍合
1. git merge <branch> 合并分支到当前分支,存在两个
2. git rebase <branch> 合并分支到当前分支,存在一个
3. git rebase --abort 回到执行rebase之前
4. git rebase --continue 解决矛盾后执行 rebase
5. git mergetool 使用mergetool解决冲突
6. git add <resolve-file> 使用冲突文件解决冲突
7. gti rm <resolve-file> 删除文件
帮助
1. git help <command> 获取命令行上的帮助