一、安装后查看配置:
//查看安装的git版本
git --version
//查看当前登录的用户名或者邮箱
git config --global user.name/user.email
//设置登录用户和邮箱
git config --global user.name 'xxx'
git config --global user.email 'xxx'
//查看配置信息
git config --list
二、基本操作
//创建文件夹,并打开文件夹
mkdir xxx
cd xxx
//创建仓库后初始化(git init),执行git init后会在当前仓库目录生成一个.git目录
git init
//查看文件下目录
ls -al
//克隆代码(使用git clone从现在Git仓库中拷贝项目)
git clone <repo> <directory>
参数说明:
repo:Git仓库地址
directory:本地目录
//增加到缓存区中
git add xxx
//查看状态
git status
//查看文件差异
git diff:比较是的缓存区和工作区的差异内容
git diff --cached:比较的是缓存区和历史区的差异
git diff HEAD:查看已缓存的与未缓存的所有改动
git diff --stat:显示摘要而非整个
//增加到仓库中
git commit -m '提交代码注释'
git commit -a 跳过注释
git commit -am '提交代码注释'
//取消已缓存的内容
git reset HEAD
//手工删除文件
git rm <file>
git rm -f <file>
git rm --cached <file>:使用--cached 表示只删除缓存区中的内容
git rm -r *
//文件重命名
git mv
//回滚版本(回滚到最近的一个版本commitId)
git reset xxx
//回滚到未来
git reflog
三、分支操作
//创建分支
git branch xxx
//查看分支
git branch:会列出所有分支,当前分支前面会标一个*号
//切换分支
git checkout xxx
//创建分支并切换分支
git checkout -b xxx
//删除分支
git branch -d xxx
//在分支上提交新的版本
git commit -a -m 'xxx'
//分支合并
git merge
四、查看提交历史
git log:查看所有提交历史记录
git log --oneline:查看具体多少条提交历史记录
git log --oneline --graph:查看具体多少条提交历史记录,并图形化显示
git log --reverse --oneline:查看逆向显示所有提交历史记录
git log --author --oneline:查看指定提交人的提交历史记录
git log --oneline --before --after --no-merges:查看指定日期的提交历史记录
五、Git远程仓库
//连接远程分支
git remote add origin 仓库地址
//查看远程仓库
git remote:显示简短的远程仓库名称
git remote -v:显示详情的远程仓库路径地址
//删除远程仓库
git remote rm origin
//推送分支
git push origin master/xxx
//拉取分支
git pull