You are viewing an old revision of this post, from March 31, 2015 @ 17:29:41. See below for differences between this version and the current revision.

Fix for Git error: “fatal: Unable to find remote helper for ‘http’”

This error is most commonly caused by Git being compiled without support for OpenSSL or Expatlibraries. The solution is to build Git yourself.

It looks like not having (lib)curl-devel installed when you install git can cause this.

If you install (lib)curl-devel, and then rebuild/install git, this should solve the problem:

$ yum install curl-devel

Step 1 - Install OpenSSL and Expat

On example on Red Hat / Fedora you can use this command:

12

 
$ yum install expat expat-devel openssl openssl-devel
$ yum remove git git-all

 

 

 

view rawgistfile1.sh hosted with ❤ by GitHub

 

 

 

 

 

 

Step 2 - Build and install Git

Go get the latest Git source tarball (as of this writing it’s version 1.9.0).

12345

 
$ wget https://git-core.googlecode.com/files/git-1.9.0.tar.gz
$ tar zxf git-1.9.0.tar.gz
$ cd git-1.9.0
 
$ ./configure --with-expat --with-openssl

 

 

 

view rawgistfile1.txt hosted with ❤ by GitHub

 

 

 

 

 

 

At this point, make sure you see following lines in the output:

12

 
checking for curl_global_init in -lcurl... yes
checking for XML_ParserCreate in -lexpat... yes

 

 

 

view rawgistfile1.txt hosted with ❤ by GitHub

 

 

 

 

 

 

And now build and install Git:

12

 
$ make
$ make install

 

 

 

 

 

 

 

 

 

Revisions

Revision Differences

March 31, 2015 @ 17:29:41Current Revision
Content
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: This error is most commonly caused by Git being compiled without support for&nbsp;<a href="http:// www.openssl.org/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(245, 91, 44); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); background: transparent;" target="_blank" >OpenSSL</a>&nbsp;or&nbsp;<a href="http:// expat.sourceforge.net/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(245, 91, 44); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); background: transparent;" target="_blank" >Expat</a>libraries.&nbsp;The solution is to build Git yourself.Unchanged: This error is most commonly caused by Git being compiled without support for&nbsp;<a href="http:// www.openssl.org/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(245, 91, 44); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); background: transparent;" target="_blank" >OpenSSL</a>&nbsp;or&nbsp;<a href="http:// expat.sourceforge.net/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(245, 91, 44); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); background: transparent;" target="_blank" >Expat</a>libraries.&nbsp;The solution is to build Git yourself.
Unchanged: </p>Unchanged: </p>
 Added: <p style="margin: 0px 0px 1em; padding: 0px; border: 0px; font-size: 15px; clear: both; color: rgb(34, 34, 34); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 13px;">
 Added: It looks like not having (lib)curl-devel installed when you install git can cause this.
 Added: </p>
 Added: <p style="margin: 0px 0px 1em; padding: 0px; border: 0px; font-size: 15px; clear: both; color: rgb(34, 34, 34); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 13px;">
 Added: If you install (lib)curl-devel, and then rebuild/install git, this should solve the problem:
 Added: </p>
 Added: <pre style="margin-top: 0px; padding: 5px; border: 0px; overflow: auto; width: auto; max-height: 600px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: rgb(34, 34, 34); background-color: rgb(238, 238, 238);">
 Added: <code style="margin: 0px; padding: 0px; border: 0px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;">$ yum install curl-devel
 Added: </code></pre>
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <span style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-weight: 700; background: transparent;">Step 1 - Install OpenSSL and Expat</span>Unchanged: <span style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-weight: 700; background: transparent;">Step 1 - Install OpenSSL and Expat</span>
Unchanged: </p>Unchanged: </p>
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: On example on Red Hat / Fedora you can use this command:Unchanged: On example on Red Hat / Fedora you can use this command:
Unchanged: </p>Unchanged: </p>
Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="gist" id="gist4542040" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="gist" id="gist4542040" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">
Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">
Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <span class="line-number" id="file-gistfile1-sh-L1" rel="file-gistfile1-sh-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-sh-L2" rel="file-gistfile1-sh-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">2</span>Unchanged: <span class="line-number" id="file-gistfile1-sh-L1" rel="file-gistfile1-sh-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-sh-L2" rel="file-gistfile1-sh-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">2</span>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">
Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">
Unchanged: &nbsp;</pre>Unchanged: &nbsp;</pre>
Unchanged: <div class="line" id="file-gistfile1-sh-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-sh-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: $ yum install expat expat-devel openssl openssl-develUnchanged: $ yum install expat expat-devel openssl openssl-devel
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-sh-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-sh-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: $ yum remove git git-allUnchanged: $ yum remove git git-all
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="gist-meta" style="margin: 0px; padding: 10px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; overflow: hidden; font-stretch: normal; line-height: normal; font-family: Helvetica, arial, freesans, clean, sans-serif; color: rgb(153, 153, 153); background: rgb(247, 247, 247);">Unchanged: <div class="gist-meta" style="margin: 0px; padding: 10px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; overflow: hidden; font-stretch: normal; line-height: normal; font-family: Helvetica, arial, freesans, clean, sans-serif; color: rgb(153, 153, 153); background: rgb(247, 247, 247);">
Unchanged: <a href="https:/ /gist.github.com/kamituel/ 4542040/raw/gistfile1.sh" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; float: right; background: transparent;">view raw</a><a href="https:/ /gist.github.com/kamituel/ 4542040#file- gistfile1-sh" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;" >gistfile1.sh< /a>&nbsp;hosted with ❤ by&nbsp;<a href="https:/ /github.com/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;">GitHub</a>Unchanged: <a href="https:/ /gist.github.com/kamituel/ 4542040/raw/gistfile1.sh" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; float: right; background: transparent;">view raw</a><a href="https:/ /gist.github.com/kamituel/ 4542040#file- gistfile1-sh" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;" >gistfile1.sh< /a>&nbsp;hosted with ❤ by&nbsp;<a href="https:/ /github.com/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;">GitHub</a>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: </div>Unchanged: </div>
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <span style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-weight: 700; background: transparent;">Step 2 - Build and install Git</span>Unchanged: <span style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-weight: 700; background: transparent;">Step 2 - Build and install Git</span>
Unchanged: </p>Unchanged: </p>
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Deleted: Go get the latest&nbsp;<a href="http:// code.google.com/p/git-core/ downloads/list" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(245, 91, 44); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); background: transparent;" target="_blank">Git source tarball</a>&nbsp;(as of this writing it&rsquo;s version 1.8.1). Added: Go get the latest&nbsp;<a href="http:// code.google.com/p/git-core/ downloads/list" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(245, 91, 44); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); background: transparent;" target="_blank">Git source tarball</a>&nbsp;(as of this writing it&rsquo;s version 1.9.0).
Unchanged: </p>Unchanged: </p>
Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="gist" id="gist4542056" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="gist" id="gist4542056" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">
Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">
Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <span class="line-number" id="file-gistfile1-txt-L1" rel="file-gistfile1-txt-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-txt-L2" rel="file-gistfile1-txt-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >2</span><span class="line-number" id="file-gistfile1-txt-L3" rel="file-gistfile1-txt-L3" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >3</span><span class="line-number" id="file-gistfile1-txt-L4" rel="file-gistfile1-txt-L4" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >4</span><span class="line-number" id="file-gistfile1-txt-L5" rel="file-gistfile1-txt-L5" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">5</span>Unchanged: <span class="line-number" id="file-gistfile1-txt-L1" rel="file-gistfile1-txt-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-txt-L2" rel="file-gistfile1-txt-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >2</span><span class="line-number" id="file-gistfile1-txt-L3" rel="file-gistfile1-txt-L3" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >3</span><span class="line-number" id="file-gistfile1-txt-L4" rel="file-gistfile1-txt-L4" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >4</span><span class="line-number" id="file-gistfile1-txt-L5" rel="file-gistfile1-txt-L5" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">5</span>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">
Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">
Unchanged: &nbsp;</pre>Unchanged: &nbsp;</pre>
Unchanged: <div class="line" id="file-gistfile1-txt-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Deleted: $ wget http://git-core.googlecode.com/ files/git-1.8.1.tar.gz Added: $ wget https://git-core.googlecode.com/ files/git-1.9.0.tar.gz
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-txt-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Deleted: $ tar zxf git-1.8.1.tar.gz Added: $ tar zxf git-1.9.0.tar.gz
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-txt-LC3" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC3" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Deleted: $ cd git-1.8.1 Added: $ cd git-1.9.0
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-txt-LC4" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC4" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-txt-LC5" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC5" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: $ ./configure --with-expat --with-opensslUnchanged: $ ./configure --with-expat --with-openssl
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="gist-meta" style="margin: 0px; padding: 10px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; overflow: hidden; font-stretch: normal; line-height: normal; font-family: Helvetica, arial, freesans, clean, sans-serif; color: rgb(153, 153, 153); background: rgb(247, 247, 247);">Unchanged: <div class="gist-meta" style="margin: 0px; padding: 10px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; overflow: hidden; font-stretch: normal; line-height: normal; font-family: Helvetica, arial, freesans, clean, sans-serif; color: rgb(153, 153, 153); background: rgb(247, 247, 247);">
Unchanged: <a href="https:/ /gist.github.com/kamituel/ 4542056/raw/gistfile1.txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; float: right; background: transparent;">view raw</a><a href="https:/ /gist.github.com/kamituel/ 4542056#file- gistfile1-txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;" >gistfile1.txt< /a>&nbsp;hosted with ❤ by&nbsp;<a href="https:/ /github.com/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;">GitHub</a>Unchanged: <a href="https:/ /gist.github.com/kamituel/ 4542056/raw/gistfile1.txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; float: right; background: transparent;">view raw</a><a href="https:/ /gist.github.com/kamituel/ 4542056#file- gistfile1-txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;" >gistfile1.txt< /a>&nbsp;hosted with ❤ by&nbsp;<a href="https:/ /github.com/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;">GitHub</a>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: </div>Unchanged: </div>
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: At this point, make sure you see following lines in the output:Unchanged: At this point, make sure you see following lines in the output:
Unchanged: </p>Unchanged: </p>
Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="gist" id="gist4542064" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="gist" id="gist4542064" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">
Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">
Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <span class="line-number" id="file-gistfile1-txt-L1" rel="file-gistfile1-txt-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-txt-L2" rel="file-gistfile1-txt-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">2</span>Unchanged: <span class="line-number" id="file-gistfile1-txt-L1" rel="file-gistfile1-txt-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-txt-L2" rel="file-gistfile1-txt-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">2</span>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">
Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">
Unchanged: &nbsp;</pre>Unchanged: &nbsp;</pre>
Unchanged: <div class="line" id="file-gistfile1-txt-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: checking for curl_global_init in -lcurl... yesUnchanged: checking for curl_global_init in -lcurl... yes
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-txt-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-txt-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: checking for XML_ParserCreate in -lexpat... yesUnchanged: checking for XML_ParserCreate in -lexpat... yes
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="gist-meta" style="margin: 0px; padding: 10px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; overflow: hidden; font-stretch: normal; line-height: normal; font-family: Helvetica, arial, freesans, clean, sans-serif; color: rgb(153, 153, 153); background: rgb(247, 247, 247);">Unchanged: <div class="gist-meta" style="margin: 0px; padding: 10px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; overflow: hidden; font-stretch: normal; line-height: normal; font-family: Helvetica, arial, freesans, clean, sans-serif; color: rgb(153, 153, 153); background: rgb(247, 247, 247);">
Unchanged: <a href="https:/ /gist.github.com/kamituel/ 4542064/raw/gistfile1.txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; float: right; background: transparent;">view raw</a><a href="https:/ /gist.github.com/kamituel/ 4542064#file- gistfile1-txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;" >gistfile1.txt< /a>&nbsp;hosted with ❤ by&nbsp;<a href="https:/ /github.com/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;">GitHub</a>Unchanged: <a href="https:/ /gist.github.com/kamituel/ 4542064/raw/gistfile1.txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; float: right; background: transparent;">view raw</a><a href="https:/ /gist.github.com/kamituel/ 4542064#file- gistfile1-txt" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;" >gistfile1.txt< /a>&nbsp;hosted with ❤ by&nbsp;<a href="https:/ /github.com/" style="margin: -1px 0px 0px; padding: 1px 0px; vertical-align: baseline; color: rgb(102, 102, 102); text-decoration: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(224, 226, 225); font-weight: bold; background: transparent;">GitHub</a>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: </div>Unchanged: </div>
Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(98, 101, 102); font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; line-height: 20.7999992370605px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: And now build and install Git:Unchanged: And now build and install Git:
Unchanged: </p>Unchanged: </p>
Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="gist" id="gist4542069" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="gist" id="gist4542069" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">Unchanged: <div class="gist-file" style="margin: 0px 0px 1em; padding: 0px; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rgb(221, 221, 221) rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; border-radius: 3px; background: transparent;">
Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <div class="gist-data gist-syntax" style="margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); outline: 0px; vertical-align: baseline; overflow: auto; word-wrap: normal; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">Unchanged: <div class="file-data" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 1.4; background: transparent;">
Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <table cellpadding="0" cellspacing="0" class="lines highlight" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; border-collapse: collapse; border-spacing: 0px; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tbody style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <tr style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">Unchanged: <td class="line-numbers" style="margin: 0px; padding: 0.5em; border-width: 0px 1px 0px 0px; border-right-style: solid; border-right-color: rgb(238, 238, 238); outline: 0px; vertical-align: baseline; color: rgb(170, 170, 170); text-align: right; line-height: 1.4; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;">
Unchanged: <span class="line-number" id="file-gistfile1-sh-L1" rel="file-gistfile1-sh-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-sh-L2" rel="file-gistfile1-sh-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">2</span>Unchanged: <span class="line-number" id="file-gistfile1-sh-L1" rel="file-gistfile1-sh-L1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;" >1</span><span class="line-number" id="file-gistfile1-sh-L2" rel="file-gistfile1-sh-L2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; display: block; clear: right; background: transparent;">2</span>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">Unchanged: <td class="line-data" style="margin: 0px; border: 0px; outline: 0px; vertical-align: baseline; padding: 0.5em !important; background: transparent;">
Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">Unchanged: <pre class="line-pre" style="outline: 0px; vertical-align: baseline; text-shadow: rgb(255, 255, 255) 0px 1px; overflow: auto; white-space: pre; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border: 0px !important; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height: inherit !important; background: transparent !important;">
Unchanged: &nbsp;</pre>Unchanged: &nbsp;</pre>
Unchanged: <div class="line" id="file-gistfile1-sh-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-sh-LC1" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: $ makeUnchanged: $ make
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line" id="file-gistfile1-sh-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">Unchanged: <div class="line" id="file-gistfile1-sh-LC2" style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;">
Unchanged: $ make installUnchanged: $ make install
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: </div>Unchanged: </div>

Note: Spaces may be added to comparison text to allow better line wrapping.

No comments yet.

Leave a Reply