查看版本git version
设置用户签名 config --global user.name
设置用户签名 config --global user.emall
初始化本地库 git init
查看本地库状态 git staus
添加到暂存区 git add 文件名
提交到本地库 git commit -m "日志信息" 文件名
查看历史记录 git reflog
版本穿梭 git reset -hard 本版号
查看文件内容 cat 文件名
查看行 tail -n 1 文件明
删除文件 git rm --cached 文件名
查看日志信息 git reflog
查看完整日志 git log
上传本地库 git commit -m "信息" 文件名
版本穿梭 git reset --hard 版本id
分支
创建分支 git branch 分支名
查看分支 git branch -v
切换分支 git checkout 分支名
把指定的分支合并到当前分支上 git merge 分支名
查看当前都有什么别名 git remote -v
创建别名 git remote add 链接
拉取代码 git pull 链接 分支
克隆代码 git clone