克隆项目

  1. git clone {giturl}

设置全局用户名和email

  1. git config --global user.name "GeekGx"
  2. git config --global user.email "geekgx@qq.com"

设置当前仓库用户名和email

  1. git config --local user.name "GeekGx"
  2. git config --local user.email "geekgx@qq.com"

更新远端分支列表

  1. git remote update origin -p

查看当前仓库分支列表

  1. git branch -a

删除分支

  1. #删除本地分支
  2. git branch -d {branchName}
  3. #删除远程分支
  4. git push origin -d {branchName}

终止合并

  1. git merge --abort

合并冲突时,如果无法确认差异,可以选择终止合并,然后再对应分支上进行对比

版本回退

  1. #重置到指定版本
  2. git reset --hard {commitHash}
  3. #将当前版本强制推到远程分支
  4. git push origin {branchName} --force