<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <br>
    <div class="moz-cite-prefix">Le 2015-01-11 14:43, Bernhard Graaf a
      écrit :<br>
    </div>
    <blockquote cite="mid:20C7FD0D78C741A1AE9AD89F5F2E2DFC@BernhardPC"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <meta name="Generator" content="Microsoft Word 11 (filtered
        medium)">
      <style>
<!--
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
span.E-MailFormatvorlage17
        {mso-style-type:personal-compose;
        font-family:Arial;
        color:windowtext;}
@page Section1
        {size:595.3pt 841.9pt;
        margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.Section1
        {page:Section1;}
-->
</style>
      <div class="Section1">
        <p class="MsoNormal"><font face="Arial" size="2"><span
              style="font-size:10.0pt;
              font-family:Arial">Hi,<o:p></o:p></span></font></p>
        <p class="MsoNormal"><font face="Arial" size="2"><span
              style="font-size:10.0pt;
              font-family:Arial"><o:p> </o:p></span></font></p>
        <p class="MsoNormal"><font face="Arial" size="2"><span
              style="font-size:
              10.0pt;font-family:Arial" lang="EN-GB">I need to build
              gstreamer 1.4.5 from GIT, but if I
              download I get only the 1.5.x Version.<o:p></o:p></span></font></p>
        <p class="MsoNormal"><font face="Arial" size="2"><span
              style="font-size:
              10.0pt;font-family:Arial" lang="EN-GB">Is it possible to
              get the 1.4.5 Version?<o:p></o:p></span></font></p>
        <p class="MsoNormal"><font face="Arial" size="2"><span
              style="font-size:
              10.0pt;font-family:Arial" lang="EN-GB"><o:p> </o:p></span></font><br>
        </p>
      </div>
    </blockquote>
    <font size="2"><font face="Arial">Our git repository is composed of
        branches. When you freshly clone a git repository, it will be
        set to master branch. This the development branch. When a
        development branch get released, like 1.4 was, then a branch for
        bug fixes on top of that stable track is created. In this case,
        the branch is 1.4. Building from 1.4 branch will not result in a
        precise and reproducible build version. So to allow this, we
        also add tags that let you pick the exact version.<br>
        <br>
        To simply select a branch or a tag<br>
        <br>
        git checkout BRANCH<br>
        or<br>
        git checkout TAG<br>
        <br>
        If you want to make modification to it (hence maintain a set of
        patches on top), create a branch locally<br>
        <br>
        git checkout -b mybranch TAG/BRANCH<br>
        <br>
        You need to make sure common/ submodule is up-to-date. For that
        run<br>
        <br>
        git submodule update<br>
        <br>
        <br>
        You can list branch using "git branch -r" and list tags using
        "git tag -l". 1.4.5 tag is simply "1.4.5".<br>
        <br>
        cheers,<br>
        Nicolas <br>
      </font></font>
  </body>
</html>