本地
git init 初始化
git add tile
git commit -m 'message' tile
分支
git branch 分支名 创建分支
git checkout 分支名 切换
git branch -v 查看分支
git merge 分支名 合并分支
历史版本
git reflog
git log
版本回退
git reset --hard 版本号
远程仓库操作
git remote -v 查看地址别名
git remote add 别名 地址 添加地址,起别名
git push 别名 分支 推送分支内容
git clone 远程地址 克隆到本地
git pull 远程库地址别名 远程分支名 将远程仓库对于分支最新内容拉下来与本地分支合并
配置ssh(待写)