Configure git send-email for gmail

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. Edit ~/.gitconfig [sendemail] from = Firstname Lastname email@gmail.com smtpserver = smtp.gmail.com smtpuser = email@gmail.com smtpencryption = tls smtppass = PASSWORD chainreplyto = false smtpserverport = 587 As I am using Googles two factor authentication I needed to generate an app specific password....

April 6, 2015 · 1 min · Christian Gmeiner

Rebase Github fork

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. View the code on [Gist](https://gist.github.com/austriancoder/724a0a8d1db4f229e197d501f8b49fa5).If you get a merge conflict during rebase, you only need to follow the instructions git gives you.

February 8, 2014 · 1 min · Christian Gmeiner

git: RPC failed; result=22, HTTP code = 504

git clone http://review.coreboot.org/p/coreboot.git coreboot Cloning into ‘coreboot’… error: RPC failed; result=22, HTTP code = 504 fatal: The remote end hung up unexpectedly The error occurs in ‘libcurl’, which is the underlying protocol for http. To get more details about the error, set GIT_CURL_VERBOSE=1

March 7, 2013 · 1 min · Christian Gmeiner

Sending patches from a local git repository

At the moment I am reworking some old seabios patches as I want them in upstream. At the moment my git log shows this: commit fd7e6128d5fb9b8297a4a20f3288c130a554147b Author: Christian Gmeiner christian.gmeiner@gmail.com Date: Thu Feb 14 10:24:59 2013 +0100 geodevga: fix wrong define name Signed-off-by: Christian Gmeiner christian.gmeiner@gmail.com commit b1268e8100f0bcf0655b65326856e6f33e3625c1 Author: Christian Gmeiner christian.gmeiner@gmail.com Date: Thu Feb 14 10:22:58 2013 +0100 geodevga: add debug to msr functions Signed-off-by: Christian Gmeiner christian.gmeiner@gmail.com commit dde4df84126a460c454ca79fc8dc5b0ae4aa876e Author: Christian Gmeiner christian....

February 15, 2013 · 3 min · Christian Gmeiner