git status 查看当前状态
git branch 查看本地所有分支
git branch -a 查看所有本地和远程分支
git branch -r 查看远程所有分支
git branch -D 分支名称 删除本地分支
git pull 本地与服务器端同步
git pull origin 分支名称 拉取远程指定分支
git checkout v4 切换到v4分支
git clone 远程地址 拉取远程代码
git add . 添加所有本地修改文件到本地仓库
git commit -m ‘注释’ 提交到本地仓库
git push 提交本地代码到远程仓库