1. 分支创建

    //只创建分支不切换;
    $ git branch testing //创建并切换分支
    $ git checkout -b iss53
  2. 查看各个分支的指向对象
    $ git log --oneline --decorate
    f30ab (HEAD, master, testing) add feature #32 - ability to add new
    34ac2 fixed bug #1328 - stack overflow under certain conditions
    98ca9 initial commit of my project
    //当前 “master” 和 “testing” 分支均指向校验和以 f30ab 开头的提交对象。
  3. 分支切换
    $ git checkout testing
  4. 查看项目交叉历史
    $ git log --oneline --decorate --graph --all
    * c2b9e (HEAD, master) made other changes
    | * 87ab2 (testing) made a change
    |/
    * f30ab add feature # - ability to add new formats to the
    * 34ac2 fixed bug # - stack overflow under certain conditions
    * 98ca9 initial commit of my project
  5. 合并分支,在当前分支合并某某分支
    1:如果当前分支是合并目标分支的直接祖先,就可以使用快速合并,当前分支的指针直接移动到目标分支;  例如:master分支合并hotfix分支
    $ git checkout master
    $ git merge hotfix
    Updating f42c576..3a0874c
    Fast-forward
    index.html | ++
    file changed, insertions(+) 2:如果当前分支并不是合并目标分支的直接祖先,Git不得不做一些额外的工作。出现这种情况的时候,Git会使用两个分支的末端所指的快照(C4 和 C5)以及这两个分支的工作祖先(C2),做一个简单的三方合并。 例如:master分支合并iss53分支


    
    
  6. 删除分支
    //删除hotfix分支
    $ git branch -d hotfix
    Deleted branch hotfix (3a0874c).
  7. 合并的冲突处理方案
    //合并分支时产生冲突,指示index.html文件有冲突
    $ git merge iss53
    Auto-merging index.html
    CONFLICT (content): Merge conflict in index.html
    Automatic merge failed; fix conflicts and then commit the result.
    //观察文件状态
    $ git status
    On branch master
    You have unmerged paths.
    (fix conflicts and run "git commit") Unmerged paths:
    (use "git add <file>..." to mark resolution) both modified: index.html no changes added to commit (use "git add" and/or "git commit -a")
    //使用工具打开冲突的文件
    
    <<<<<<< HEAD:index.html
    <div id="footer">contact : email.support@github.com</div>
    =======
    <div id="footer">
    please contact us at support@github.com
    </div>
    >>>>>>> iss53:index.html
    //把文件手工修改为我们想要的内容
    <div id="footer">
    please contact us at email.support@github.com
    </div> //重新添加到暂存库
    git add index.html //重新添加到版本库
    git commit -m '解决冲突文件index.html'
  8. 查看所有的分支列表
    $ git branch
    iss53
    * master
    testing *代表的是当前的分支
  9. 查看每个分支的最后一次提交
    $ git branch -v
    iss53 93b412c fix javascript issue
    * master 7a98805 Merge branch 'iss53'
    testing 782fd34 add scott to the author list in the readmes
  10. 筛选哪些分支已经合并到当前分支,哪些分支没有合并到当前分支
    //查看哪些分支已经合并到当前分支;      使用git branch -d iss53可以正常删除已合并的分支;
    $ git branch --merged
    iss53
    * master //查看哪些分支目前还没有合并到当前分支;使用git branch -d testing不能正常删除没有被合并的分支,需用git branch -D testing强制删除
    $ git branch --no-merged
    testing
  11. 分支开发工作流
    1. 长期分支
    2. 特性分支
  12. 远程分支
    1. 远程分支的存在方式

      • 以 (remote)/(branch) 形式命名,例如: origin/master
    2. 克隆之后的服务器与本地仓库
      • 系统一个本地分支会对应一个远程分支,默认状况下会一一对应。
    3. 更新本地仓库的远程分支
      //远程主机的所有更新全部拉取到本地中;只拉取,不会自动合并;相当于origin/master只读分支不断向前走动
      $ git fetch <远程主机名> //只拉取特定的分支
      $ git fetch <远程主机名> <分支名> //拉取并自动合并
      $ git pull <远程主机名>
    4. 推送分支
      //推送serverfix分支
      $ git push origin serverfix
      Counting objects: , done.
      Delta compression using up to threads.
      Compressing objects: % (/), done.
      Writing objects: % (/), 1.91 KiB | bytes/s, done.
      Total (delta ), reused (delta )
      To https://github.com/schacon/simplegit
      * [new branch] serverfix -> serverfix
    5. 在远程分支的基础上进行工作
      1. 合并远程分支

        git merge origin/serverfix
      2. 在远程分支上创建一个分支
        $ git checkout -b serverfix origin/serverfix
        Branch serverfix set up to track remote branch serverfix from origin.
        Switched to a new branch 'serverfix'
    6. 跟踪分支
      //当运行fetch的时候,本地分支 sf(新建) 会自动从 origin/serverfix 拉取。
      $ git checkout -b sf origin/serverfix
      Branch sf set up to track remote branch serverfix from origin.
      Switched to a new branch 'sf' //设置本地已有的分支(当前分支)跟踪刚刚拉取下来的一个分支
      $ git branch -u origin/serverfix
    7. 列出所有的跟踪分支,并指出本地分支是否是领先、落后。
      $ git branch -vv
      iss53 7e424c3 [origin/iss53: ahead ] forgot the brackets //超前两个提交
      master 1ae2a45 [origin/master] deploying index fix //与远程分支同步
      * serverfix f8674d9 [teamone/server-fix-good: ahead , behind ] this should do it //超前三个提交,落后一个提交
      testing 5ea463a trying something new //没有跟踪任何远程分支;
    8. 删除远程分支
      $ git push origin --delete serverfix
      To https://github.com/schacon/simplegit
      - [deleted] serverfix

git杂记-分支简介的更多相关文章

  1. Git分支-分支简介

    源地址:https://git-scm.com/book/zh/ch3-1.html 几乎所有的版本控制系统都以某种形式支持分支. 使用分支意味着你可以把你的工作从开发主线上分离开来,以免影响开发主线 ...

  2. 7.Git分支-分支简介、分支创建、分支切换

    1.分支简介 几乎所有的版本控制系统都支持某种形式的分支.使用分支意味着可以把你的工作从开发主线上分离开来,以免影响开发主线.Git的分支是其必杀技,它相对于其它版本控制系统来说,具有难以置信的轻量性 ...

  3. Git(12)-- Git 分支 - 分支简介

    @ 目录 1.分支简介 1.1.初始化并首次提交 首次提交对象及其树结构: git 的 cat-file 的命令用法: 1.2.修改并第二次提交 第二次提交对象及其树结构: 1.3.修改并第三次提交 ...

  4. git分支简介,理解HEAD,master

    为了真正理解 Git 处理分支的方式,我们需要回顾一下 Git 是如何保存数据的. 或许你还记得 起步 的内容,Git 保存的不是文件的变化或者差异,而是一系列不同时刻的文件快照. 在进行提交操作时, ...

  5. Git 系列教程(11)- 分支简介

    前言 很多版本控制系统都有分支这个概念 使用分支意味着可以将日常工作从主线上脱离,从而避免影响主线 Git 鼓励在工作流程中频繁使用分支和合并 Git 是如何保存数据的 Git 保存的不是文件的变化或 ...

  6. git入门-分支

    1. git分支简介 使用分支可以让你从开发主线上分离开来,然后在新的分支上解决特定问题,同时不会影响主线.像其它的一些版本控制系统,创建分支需要创建整个源代码目录的副本.而Git 的分支是很轻量级的 ...

  7. 好代码是管出来的——Git的分支工作流与Pull Request

    上一篇文章介绍了常用的版本控制工具以及git的基本用法,从基本用法来看git与其它的版本控制工具好像区别不大,都是对代码新增.提交进行管理,可以查看提交历史.代码差异等功能.但实际上git有一个重量级 ...

  8. git branch 分支

    几乎所有的版本控制系统都以某种形式支持分支. 使用分支意味着你可以把你的工作从开发主线上分离开来,以免影响开发主线. 在很多版本控制系统中,这是一个略微低效的过程——常常需要完全创建一个源代码目录的副 ...

  9. Git Flow 分支管理简述

    概述 Git 是什么 Git 是一个开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目. Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的 ...

随机推荐

  1. mxonline实战6 , 忘记用户密码时进行重置

        对应github地址:密码重置   原理:  1. 一个需要输入用户邮箱和注册码的密码忘记页面 2. 点击提交后,用户邮箱收到一个邮件,包含重置密码的链接 3. 点击链接进入密码重置页面   ...

  2. python基础知识梳理----2格式化输出,替换符

    一:格式化输出 1: 格式: 例子: name=input('请输入name') print('名字是%s'%name) %s就是代表字符串串占位符,除此之外,还有%d, 是数字占位符, 如果把上⾯面 ...

  3. HDU-1160-FatMouse's Speed(线性DP,LIS)

    FatMouse's Speed Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

  4. MDX常用几种查询对比

    MDX1: SELECT NON EMPTY {Hierarchize( { [Measures].[年初数 的总和], [Measures].[期末数 的总和], [Measures].[本期发生数 ...

  5. secureCRT scripts as vbs

    gdb multithread debug. lsusb.py # $language = "VBScript" # $interface = "1.0" Su ...

  6. Q143 重排链表

    给定一个单链表 L:L0→L1→-→Ln-1→Ln , 将其重新排列后变为: L0→Ln→L1→Ln-1→L2→Ln-2→- 你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换. 示例 1: ...

  7. linux下实践导入导出MySQL数据库

    一.导出: 用mysqldump命令行 命令格式 mysqldump -u 用户名 -p 数据库名 > 数据库名.sql 范例: mysqldump -u root -p abc > ab ...

  8. C# this关键字(给底层类库扩展成员方法)

    本文参考自唔愛吃蘋果的C#原始类型扩展方法—this参数修饰符,并在其基础上做了一些细节上的解释 1.this作为参数关键字的作用 使用this关键字,可以向this关键字后面的类型添加扩展方法,而无 ...

  9. Hibernate3.3.2_ID生成策略

    1,xml生成id generator:常用四个:native.identity.sequence.uuid. Annotation: 1,@GeneratedValue: a)自定义ID b)AUT ...

  10. codeblocks c++ 编译出错

    codeblocks编译出错 今天编译一个c++程序调用模板的时候,出现错误 error This file requires compiler and library support for the ...