<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Git on Christian Gmeiner</title>
    <link>https://playground.christian-gmeiner.info/tags/git/</link>
    <description>Recent content in Git on Christian Gmeiner</description>
    <image>
      <title>Christian Gmeiner</title>
      <url>https://playground.christian-gmeiner.info/papermod-cover.png</url>
      <link>https://playground.christian-gmeiner.info/papermod-cover.png</link>
    </image>
    <generator>Hugo -- 0.152.2</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 06 Apr 2015 20:53:34 +0000</lastBuildDate>
    <atom:link href="https://playground.christian-gmeiner.info/tags/git/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Configure git send-email for gmail</title>
      <link>https://playground.christian-gmeiner.info/2015-04-06-configure-git-send-email-for-gmail/</link>
      <pubDate>Mon, 06 Apr 2015 20:53:34 +0000</pubDate>
      <guid>https://playground.christian-gmeiner.info/2015-04-06-configure-git-send-email-for-gmail/</guid>
      <description>&lt;p&gt;Today I did a fresh installation of Fedora on my Chromebook and need to setup git send-email. Usually I need to do this step once every 1-2 years I thought it might be a good idea to write it down.&lt;/p&gt;
&lt;p&gt;Edit ~/.gitconfig&lt;/p&gt;
&lt;p&gt;[sendemail] from = Firstname Lastname &lt;a href=&#34;mailto:email@gmail.com&#34;&gt;email@gmail.com&lt;/a&gt; smtpserver = smtp.gmail.com smtpuser = &lt;a href=&#34;mailto:email@gmail.com&#34;&gt;email@gmail.com&lt;/a&gt; smtpencryption = tls smtppass = PASSWORD chainreplyto = false smtpserverport = 587&lt;/p&gt;
&lt;p&gt;As I am using Googles two factor authentication I needed to generate an app specific password.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rebase Github fork</title>
      <link>https://playground.christian-gmeiner.info/2014-02-08-rebase-github-fork/</link>
      <pubDate>Sat, 08 Feb 2014 09:37:49 +0000</pubDate>
      <guid>https://playground.christian-gmeiner.info/2014-02-08-rebase-github-fork/</guid>
      <description>&lt;p&gt;Today I needed to rebase my etnaviv fork to the current master of upstream. I need to say that
I never did this before but with git this is a breeze.&lt;/p&gt;
&lt;div class=&#34;oembed-gist&#34;&gt;&lt;script src=&#34;https://gist.github.com/austriancoder/724a0a8d1db4f229e197d501f8b49fa5.js&#34;&gt;&lt;/script&gt;&lt;noscript&gt;View the code on [Gist](https://gist.github.com/austriancoder/724a0a8d1db4f229e197d501f8b49fa5).&lt;/noscript&gt;&lt;/div&gt;If you get a merge conflict during rebase, you only need to follow the instructions git gives you.</description>
    </item>
    <item>
      <title>git: RPC failed; result=22, HTTP code = 504</title>
      <link>https://playground.christian-gmeiner.info/2013-03-07-git-rpc-failed/</link>
      <pubDate>Thu, 07 Mar 2013 15:44:38 +0000</pubDate>
      <guid>https://playground.christian-gmeiner.info/2013-03-07-git-rpc-failed/</guid>
      <description>&lt;p&gt;git clone &lt;a href=&#34;http://review.coreboot.org/p/coreboot.git&#34;&gt;http://review.coreboot.org/p/coreboot.git&lt;/a&gt; coreboot Cloning into &amp;lsquo;coreboot&amp;rsquo;&amp;hellip; error: RPC failed; result=22, HTTP code = 504 fatal: The remote end hung up unexpectedly&lt;/p&gt;
&lt;p&gt;The error occurs in ‘libcurl’, which is the underlying protocol for http. To get more details about the error, set GIT_CURL_VERBOSE=1&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sending patches from a local git repository</title>
      <link>https://playground.christian-gmeiner.info/2013-02-15-sending-patches-from-a-local-git-repository/</link>
      <pubDate>Fri, 15 Feb 2013 15:40:49 +0000</pubDate>
      <guid>https://playground.christian-gmeiner.info/2013-02-15-sending-patches-from-a-local-git-repository/</guid>
      <description>&lt;p&gt;At the moment I am reworking some old seabios patches as I want them in upstream. At the moment my git log shows this:&lt;/p&gt;
&lt;p&gt;commit fd7e6128d5fb9b8297a4a20f3288c130a554147b Author: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; Date: Thu Feb 14 10:24:59 2013 +0100 geodevga: fix wrong define name Signed-off-by: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; commit b1268e8100f0bcf0655b65326856e6f33e3625c1 Author: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; Date: Thu Feb 14 10:22:58 2013 +0100 geodevga: add debug to msr functions Signed-off-by: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; commit dde4df84126a460c454ca79fc8dc5b0ae4aa876e Author: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; Date: Thu Feb 14 10:19:05 2013 +0100 geodevga: move output setup to own function Signed-off-by: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; commit bba85a38c67aa2b52f146b5cefe58b00f516fc2e Author: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; Date: Thu Feb 14 10:13:59 2013 +0100 geodevga: move framebuffer setup Framebuffer setup has nothing to do with dc_setup(..) so move it to geodevga_init(..). Signed-off-by: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; commit 0b3dee01385e65f2b88600c9b663589343ac4abe Author: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; Date: Thu Feb 14 10:05:45 2013 +0100 geodevga: fix errors in geode_fp_* functions Signed-off-by: Christian Gmeiner &lt;a href=&#34;mailto:christian.gmeiner@gmail.com&#34;&gt;christian.gmeiner@gmail.com&lt;/a&gt; commit 4b1d2be6e1c73d1fc9a984ca7fe6c14d433171cc Author: David Woodhouse &lt;a href=&#34;mailto:David.Woodhouse@intel.com&#34;&gt;David.Woodhouse@intel.com&lt;/a&gt; Date: Sun Feb 10 00:51:56 2013 +0000 Unify return path for CSM to go via csm_return() This allows us to keep the entry_csm code simple, and ensures that we consistently do things like saving the PIC mask (and later setting UmbStart) on the way back to UEFI. &amp;hellip;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
