git 常用命令

  • Post author:
  • Post category:其他


git clone 克隆远程分支到本地

git checkout -b xxx 创建本地分支xxx

git checkout xxx 切换到分支xxx

git add filename

git commit -m “备注”

git push origin develop:xxx 提交到远程分支xxx

查看分支:

git branch

创建分支:

git branch <name>

切换分支:

git checkout <name>

创建+切换分支:

git checkout -b <name>

合并某分支到当前分支:

git merge <name>

删除分支:

git branch -d <name>



git log --graph

命令可以看到分支合并图。

git log

--graph --pretty=oneline --abbrev-commit





git branch

--set-upstream-to=origin/dev dev



心得:


如果需要切换本地源到其他分支,则必须首先git clone下程序库.git,然后才能 git checkout -b xxx origin/xxx

转载于:https://www.cnblogs.com/zhangjh8903/p/9233044.html