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. 爬虫之chrome浏览器的使用方法

    chrome浏览器使用方法介绍 1. 新建隐身窗口 1.1 为什么需要新建隐身窗口 在打开隐身窗口的时候,第一次请求某个网站是没有携带cookie的,和代码请求一个网站一样,不携带cookie.这样就 ...

  2. 语音转文字小工具开发Python

    # -*- coding: utf- -*- import requests import re import os import time from aip import AipSpeech fro ...

  3. python学习,day3:函数式编程,递归和高阶函数

    # coding=utf-8 # Author: RyAn Bi def calc(n): #递归 print(n) if int(n/2) > 0: #设置条件,否则会循环999 次,报错, ...

  4. ArduinoNano卡在上传,无法烧录

    卡在“上传...”.过了很久被告知失败. 上午在开发版管理器中将Arduino AVR Boards从1.6.20升级到1.6.22,出现这个问题. 再安装回1.6.20,问题未被解决. 查阅资料无果 ...

  5. 《Effective C++(第三版)》 的55条建议

    1. 让自己习惯C++(Accustoming yourself to C++) 条款01: 视C++ 为一个语言联邦(View C++ as a federation of languages) 条 ...

  6. jQuery对象扩展方法(Extend)深度解析

    1.这几天在写自己的Js工具类库,所以在编写对象扩展方法,参考了jQuery的对象扩展方法,在编写该方法前,需要掌握js深拷贝和浅拷贝的相关知识,下面是jQuery3.2.1版本对象扩展方法的源码: ...

  7. shiro学习笔记_0500_授权

    1,授权:给身份认证通过的人,授予他可以访问某些资源的权限. 2,权限粒度:分为粗粒度和细粒度. 粗粒度:例如对 user 的 crud,也就是通常所说的对表的操作. 细粒度:对表中记录的操作.如 只 ...

  8. 基于RedHat6.5的Greenplum环境配置

    安装Greenplum的时候遇到了很多坑,在此记录下 欢迎园友补充问题,共同研究解决! 安装说明 1.环境说明 操作系统:Red hat 6.5 64 位 2.配置规范 2.1基本说明 greenpl ...

  9. 学生信息管理系统(C语言版本)

    这是我个人写的一个学生管理系统,这是我仅仅用来练手的代码,要知道链表可是你在面试过程中最大机率会考到的,我是陆续从单向链表入门,然后采用双向链表写的代码!如有BUG,请指正,让我们共同进步! 1 #i ...

  10. Oracle中的自连接(self join)-当表中的某一个字段与这个表中另外字段的相关时,我们可能用到自连接。

    http://blog.163.com/wkyuyang_001/blog/static/10802122820091751049479/ 当表中的某一个字段与这个表中另外字段的相关时,我们可能用到自 ...