美文网首页
Git 分支管理

Git 分支管理

作者: WHOKNOWME | 来源:发表于2016-11-18 17:12 被阅读26次
1.创建本地分支

命令:git branch -b 本地分支名xxx 远程主分支名xxx

git branch -b Gundam origin/master

2.将本地分支发布到远端

命令:git push origin 本地分支名xxx

git push origin Gundam

3.删除本地分支

命令:git branch -d 本地分支名xxx

git branch -d Gundam

4.删除远端分支

git push origin :Gundam //一定要在origin后面带上空格

相关文章

  • git常用命令

    分支管理 git 切换分支 git 查看远程分支 git 查看本地分支 git 创建本地分支 git 删除本地分支...

  • Git命令整理

    Git命令 ———————————————— git配置: git基本步骤: git分支管理: 创建分支命令: 切...

  • GIT分支管理

    GIT 分支管理 参考:在阿里,我们如何管理代码分支?GitHub Flow & Git Flow 基于Git...

  • git常用操作

    Basic Operation 分支管理切换分支git checkout git checkout -b #...

  • git提交代码规范管理

    GIT分支管理 git远程分支主要包括:master develop fixbugmaster:整个项目主分支,...

  • 2021-11-30

    一、分支管理 1、创建分支 git branch 2、查看分支 git branch...

  • git分支仓库管理

    git分支和标签管理 创建分支 git branch banchName git checkout -b bra...

  • git分支管理与使用规范

    git分支管理与使用规范 分支管理 flow git flow github flow gitlab flow f...

  • git 创建分支提交远程分支

    Git创建与管理远程分支 1.创建本地分支 git branch 分支名,例如:git branch 2.0.1....

  • 2016-06-24 阅读整理

    Git Git 基础命令Git 分支管理Git 分支合并Git 公钥提交Git 常用技巧Git 设置别名 Andr...

网友评论

      本文标题:Git 分支管理

      本文链接:https://www.haomeiwen.com/subject/hrhspttx.html