git操作

git基础命令:

git commit ---- 提交
git branch newBranchName --- 新建分支
git checkout branchName --- 切换分支名称

git执行回滚到指定版本操作如下:

  1. git log 查看已有的提交
  2. git reset --hard commit_id 把提交设置到之前的某次commit之后
  3. git push -f origin branchName 强制把代码提交到远端

git删除本地分支和远程分支:

  1. git branch -d localBranchName
  2. git push origin --delete remoteBranchName

在本地新建分支,并把这个本地分支push到仓库

git branch newBranch
git checkout newBranch
git push origin newBranch:newBranch

把分支dev merge都master上

(先切换到master分支上,然后执行pull master,在主分支master上merge dev分支,最后把merge后的情况push到仓库即可)
git checkout master
git pull origin master
git merge dev
git push origin master

你可能感兴趣的:(git操作)