基本使用
git init #初始化
git clone 地址 #克隆
git status #查看
git add 文件名 #把文件提交到暂存区
git add . #提交所有
git commit -m ‘注释’ #把暂存区的内容提交到版本库
添加作者信息
全局添加
git config --global user.email ""
git config --global user.name ""
单个添加
git config user.email ""
git config user.name ""
git log #查看版本的日志
git checkout . #恢复上一次提交的版本库位置
git reset --hard 版本号 #恢复指定版本位置
.gitignore. #创建忽略文件
分支
git branch #查看分支
git branch dev #创建分支
git checkout -b dev #创建并却换到
git branch -d dev #删除分支
git checkout dev #切划分支
git merge 分支名 #在合并的分支合并到当前的分支上