git add . 添加暂存区
git commit -m "xxxxx" 提交到本地仓库
git push origin xxxx 提交远程仓库
git checkout -b xxxx 从当前分支拉出新本地分支
git checkout xxxx 切换本地分支
git checkout -b 新建本地分支名 origin/远程分支名 切换到指定远程分支
git branch 查看本地分支
git branch -a 查看所有分支
git branch -d 分支名 删除本地分支
git branch -D 分支名 强制删除本地分支
git push origin --delete 远程分支名 删除远程分支
git log 查看日志
git reflog 查看命令操作的历史
git reset --hard id 根据 id 回退到指定的版本
git 合并
合并到master 在master分支下 输入 git merge 分支名
合并前先 git pull
网友评论