主要介绍、记录git基于命令行的基本操作
- clone项目
- 检出远程分支
- 检出本地分支
- 列出分支
- 查看提交历史
------------------具体操作命令------------------------------------------
- clone项目
git clone git@127.0.0.1:season/equipment-manage.git
- 检出远程分支
git checkout -b local(本地分支名) origin/remote(远程分支名)
- 检出本地分支
git checkout local(本地分支名)
- 列出分支
git branch // 当前分支
git branch -a // 所有分支分支,包括远程分支
git branch --all // 同上
- 查看提交历史
git log --pretty=format:"%h - %an, %ar : %s" -10 // h:哈希简写 an:作者 ar:作者修订时间 s:提交说明 -10:最近十条