<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.version-control.git">
    <title>gmane.comp.version-control.git</title>
    <link>http://blog.gmane.org/gmane.comp.version-control.git</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225319"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225290"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225268"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225254"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225249"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225248"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225247"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225246"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225244"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225235"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225230"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225216"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225212"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225192"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225170"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225154"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225146"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225145"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225142"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.version-control.git/225141"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225319">
    <title>--follow is ignored when used with --reverse</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225319</link>
    <description>&lt;pre&gt;Hello!

This [has been reported][1] to this list about half a year ago
but with no response so I'm  not even sure if it's been
acknowledged as bug.

  [1]: http://marc.info/?l=git&amp;amp;m=135215709307126&amp;amp;q=raw

When I use `git log --follow file` all is OK, but once I add
`--reverse` to it, it no longer follows the file beyond renames.

This makes it hard to query for when the file was really added,
which I was trying to achieve with

    $ git -1 --reverse --follow several_times_renamed_file

Is this going to be fixed?

Thanks,
aL.

&lt;/pre&gt;</description>
    <dc:creator>Alois Mahdal</dc:creator>
    <dc:date>2013-05-23T23:23:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225290">
    <title>[PATCH] git-remote-mediawiki: better error message when HTTP(S) access fails</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225290</link>
    <description>&lt;pre&gt;My use-case is an invalid SSL certificate. Pulling from the wiki with a
recent version of libwww-perl fails, and git-remote-mediawiki gave no
clue about the reason. Give the mediawiki API detailed error message, and
since it is not so informative, hint the user about an invalid SSL
certificate on https:// urls.

Signed-off-by: Matthieu Moy &amp;lt;Matthieu.Moy&amp;lt; at &amp;gt;imag.fr&amp;gt;
---
 contrib/mw-to-git/git-remote-mediawiki.perl | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl b/contrib/mw-to-git/git-remote-mediawiki.perl
index 9c14c1f..5b6e833 100755
--- a/contrib/mw-to-git/git-remote-mediawiki.perl
+++ b/contrib/mw-to-git/git-remote-mediawiki.perl
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -292,7 +292,13 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; sub get_mw_all_pages {
 if (!defined($mw_pages)) {
 print STDERR "fatal: could not get the list of wiki pages.\n";
 print STDERR "fatal: '$url' does not appear to be a mediawiki\n";
-print STDERR "fatal: make sure '$url/api.php' is a valid page.\n";
+if ($url =~ /^https/) {
+    pr&lt;/pre&gt;</description>
    <dc:creator>Matthieu Moy</dc:creator>
    <dc:date>2013-05-23T20:05:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225268">
    <title>Feature Request: existence-only tracking</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225268</link>
    <description>&lt;pre&gt;In my work, we have a lot of autogenerated files that need to exist so
a script will replace their contents, but tracking the contents
creates a lot of unnecessary conflicts. I would love to see an option
for a different tracking method that just makes sure a file or
directory exists. This would also obviate the need for adding things
like .empty files in a directory to force the directory to exist.
&lt;/pre&gt;</description>
    <dc:creator>Brett Trotter</dc:creator>
    <dc:date>2013-05-23T17:01:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225254">
    <title>[PATCH 0/7] Let's get that &lt; at &gt;{push}!</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225254</link>
    <description>&lt;pre&gt;[7/7] is the meat.  Sorry it's in such a messy state: I was having a
field day tracing what push is actually doing.  Anyway, I wanted to
send out the series now to get early feedback.

In other news: why on earth is push doing _so_ much processing before
pushing?  Is it written very badly, or am I missing something?

Thanks.

(based on rr/die-on-missing-upstream)

Ramkumar Ramachandra (7):
  sha1_name: abstract upstream_mark() logic
  sha1_name: factor out die_no_upstream()
  sha1_name: remove upstream_mark()
  remote: expose parse_push_refspec()
  remote: expose get_ref_match()
  sha1_name: prepare to introduce AT_KIND_PUSH
  sha1_name: implement finding &amp;lt; at &amp;gt;{push}

 remote.c    |   4 +--
 remote.h    |   4 +++
 sha1_name.c | 111 ++++++++++++++++++++++++++++++++++++++++++++----------------
 3 files changed, 88 insertions(+), 31 deletions(-)

&lt;/pre&gt;</description>
    <dc:creator>Ramkumar Ramachandra</dc:creator>
    <dc:date>2013-05-23T15:12:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225249">
    <title>hello</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225249</link>
    <description>&lt;pre&gt;hello 

My names is Barrister Javier Gomez of CANALES &amp;amp; ASOCIADOS ABOGADOS SPAIN. I 
sent you a business proposal letter long time ago,but you have not respond to 
me, 
I am using this medium to remind you again, Please I would appreciate if you 
could confirm to 
me if you received the proposal letter please let me know through this Emails 
below: 

For further clarification reach me on this Private Email: gomezjavier322&amp;lt; at &amp;gt;yahoo.
es 


Best Regards, 
Mr.Javier Gomez.
&lt;/pre&gt;</description>
    <dc:creator>huytrgfbd&lt; at &gt;libero.it</dc:creator>
    <dc:date>2013-05-23T14:14:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225248">
    <title>[PATCH] git-send-email: another fix for special characters</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225248</link>
    <description>&lt;pre&gt;When patch sender's name has special characters,
git send-email did not quote it before matching
against the author name.
As a result suppress_cc = self did not work:
sender is still Cc'd.

Fix by sanitizing before matching to patch author name.

Signed-off-by: Michael S. Tsirkin &amp;lt;mst&amp;lt; at &amp;gt;redhat.com&amp;gt;
---
 git-send-email.perl | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/git-send-email.perl b/git-send-email.perl
index c4dc438..a3fed7c 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1309,7 +1309,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; foreach my $t (&amp;lt; at &amp;gt;files) {
 elsif (/^From:\s+(.*)$/i) {
 ($author, $author_encoding) = unquote_rfc2047($1);
 next if $suppress_cc{'author'};
-next if $suppress_cc{'self'} and $author eq $sender;
+if ($suppress_cc{'self'}) {
+                                    my $sanitized_sender = sanitize_address($sender);
+                                    next if $author eq $sanitized_sender;
+                                }
 printf("(mbox) Adding cc: %s from line&lt;/pre&gt;</description>
    <dc:creator>Michael S. Tsirkin</dc:creator>
    <dc:date>2013-05-23T14:13:52</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225247">
    <title>[PATCH] git-send-email: fix handling of special characters</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225247</link>
    <description>&lt;pre&gt;When patch sender's name has special characters,
git send-email did not quote it before matching
against the author name.
As a result it would produce mail like this:

Date: Thu, 23 May 2013 16:36:00 +0300
From: "Michael S. Tsirkin" &amp;lt;mst&amp;lt; at &amp;gt;redhat.com&amp;gt;
To: qemu-devel&amp;lt; at &amp;gt;nongnu.org
Cc: "Michael S. Tsirkin" &amp;lt;mst&amp;lt; at &amp;gt;redhat.com&amp;gt;
Subject: [PATCH 0/9] virtio: switch to linux headers
Message-Id: &amp;lt;1369316169-20181-1-git-send-email-mst&amp;lt; at &amp;gt;redhat.com&amp;gt;

From: "Michael S. Tsirkin" &amp;lt;mst&amp;lt; at &amp;gt;redhat.com&amp;gt;

Fix by sanitizing before matching to patch author name.

Signed-off-by: Michael S. Tsirkin &amp;lt;mst&amp;lt; at &amp;gt;redhat.com&amp;gt;
---
 git-send-email.perl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/git-send-email.perl b/git-send-email.perl
index bd13cc8..c4dc438 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1400,7 +1400,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; foreach my $t (&amp;lt; at &amp;gt;files) {
 $subject = quote_subject($subject, $auto_8bit_encoding);
 }
 
-if (defined $author and $author ne $sender) {
+my $sanitized_sender = sanitize_address($sende&lt;/pre&gt;</description>
    <dc:creator>Michael S. Tsirkin</dc:creator>
    <dc:date>2013-05-23T13:54:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225246">
    <title>git hangs on pthread_join</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225246</link>
    <description>&lt;pre&gt;Hi,

I'm running a rather special configuration, basically i have a gerrit
server pushing
git data over openvpn connections (company regulations n' stuff)...

git 1.8.2.1 is started by xinetd
...
        port            = 9418
        socket_type     = stream
        wait            = no
        user            = gerrit2
        server          = /usr/bin/git
        server_args     =  daemon --inetd --syslog --export-all
--enable=receive-pack --init-timeout=3 --timeout=180 --base-path=&amp;lt;path&amp;gt;
...
        nice            = 10
        per_source      = UNLIMITED
        instances       = UNLIMITED
        flags           = KEEPALIVE NODELAY
---

Keepalive and nodelay has been added post fact, the same goes for the
timeouts.

I have found "git receive-pack"s that has been running for days/weeks
without terminating....

Attaching gdb and doing a trace results in:
#0  0x0000003261207b35 in pthread_join () from /lib64/libpthread.so.0
#1  0x00000000004ce58b in finish_async ()
#2  0x000000000045744b in cmd_receive_p&lt;/pre&gt;</description>
    <dc:creator>Ian Kumlien</dc:creator>
    <dc:date>2013-05-23T13:01:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225244">
    <title>Bug report: git grep seems to use the wrong .gitattributes when invoked in a subdirectory</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225244</link>
    <description>&lt;pre&gt;Greetings,

I bumped into a problem where git grep thinks files in repo/a/data are
binary files when it is invoked from repo/a and
repo/data/.gitattributes contains "* binary".

I can reproduce this on 1.7.9.5 and 1.7.10.4. Unfortunately I don't
have a newer version at hand.

How to reproduce:

[pseudo:~/tmp]% git --version
git version 1.7.10.4
[pseudo:~/tmp]% git init git-test
Initialized empty Git repository in /home/opqdonut/tmp/git-test/.git/
[pseudo:~/tmp]% cd git-test
[pseudo:~/tmp/git-test:master()]% mkdir -p a/data
[pseudo:~/tmp/git-test:master()]% mkdir data
[pseudo:~/tmp/git-test:master()]% echo '* binary' &amp;gt; data/.gitattributes
[pseudo:~/tmp/git-test:master()]% echo foo &amp;gt; a/data/foo
[pseudo:~/tmp/git-test:master()]% git add -A
[pseudo:~/tmp/git-test:master()]% git commit -m "foo"
[master (root-commit) 20fafbb] foo
 2 files changed, 1 insertion(+)
 create mode 100644 a/data/foo
 create mode 100644 data/.gitattributes
[pseudo:~/tmp/git-test:master()]% git grep foo
a/data/foo:foo
[pseudo:~/tmp/git-tes&lt;/pre&gt;</description>
    <dc:creator>Joel Kaasinen</dc:creator>
    <dc:date>2013-05-23T12:44:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225235">
    <title>push not resolving commit-ish?</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225235</link>
    <description>&lt;pre&gt;Looks like push can't resolve tags to commits.
Why is that?

linux$ git push -f $PWD v3.10-rc2:refs/heads/vhost-next
error: Trying to write non-commit object
a8c6d53c4d84b3a5eb182758a9cdceceba4691da to branch refs/heads/vhost-next
To /scm/linux
 ! [remote rejected] v3.10-rc2 -&amp;gt; vhost-next (failed to write)
error: failed to push some refs to '/scm/linux'

linux$ git log v3.10-rc2|head -5
commit c7788792a5e7b0d5d7f96d0766b4cb6112d47d75
Author: Linus Torvalds &amp;lt;torvalds&amp;lt; at &amp;gt;linux-foundation.org&amp;gt;
Date:   Mon May 20 14:37:38 2013 -0700

    Linux 3.10-rc2


linux$ $ git push -f $PWD
c7788792a5e7b0d5d7f96d0766b4cb6112d47d75:refs/heads/vhost-next
Everything up-to-date



&lt;/pre&gt;</description>
    <dc:creator>Michael S. Tsirkin</dc:creator>
    <dc:date>2013-05-23T10:53:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225230">
    <title>Bug when git rev-list options "--first-parent" and "--ancestry-path" are used together?</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225230</link>
    <description>&lt;pre&gt;It seems to me that

     git rev-list --first-parent --ancestry-path A..B

is well-defined and should list the commits in the intersection between

     git rev-list --first-parent                 A..B

and

     git rev-list                --ancestry-path A..B

But in many cases the first command doesn't provide any output even
though there are commits common to the output of the last two commands.

For example, take as an example the DAG from test t6019:

#          D---E-------F
#         /     \       \
#    B---C---G---H---I---J
#   /                     \
#  A-------K---------------L--M

(The merges are always downwards; e.g., the first parent of commit L is
K.)  The command

    git rev-list --first-parent --ancestry-path D..J

doesn't generate any output, whereas I would expect it to output "H I
J".  Similarly,

    git rev-list --first-parent --ancestry-path D..M

doesn't generate any output, whereas I would expect it to output "L M".

For fun, the attached script computes the output for all commit&lt;/pre&gt;</description>
    <dc:creator>Michael Haggerty</dc:creator>
    <dc:date>2013-05-23T10:07:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225216">
    <title>We can have you as Plenary Speaker-Session Organizer (Code 24081926) in our parallel Conferences of Rhodes (Rodos) Island, Greece 2013.</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225216</link>
    <description>&lt;pre&gt;Dear Colleagues,

We can have you as Plenary Speaker-Session Organizer (Code 24081926) in our parallel Conferences of Rhodes (Rodos) Island, Greece 2013.
Please, select the most appropriate conference for you from the big list of our parallel Conferences: 
http://www.wseas.org
Plenary Speaker-Special Session Organizer must be at least Ph.D. Holder

We have this special policy:
--------------------------------
* We need from you a special session or a group of papers in the same conference
 (minimum number: 5 PAPERS and all of them must be presented and all these papers must be registered  with the very special discount fee 250 EUR /
paper)

* Upload these papers via the Web Site of the particular WSEAS Conference and then send us their ID numbers (ID numbers: You will have received them
by the system after uploading the papers) for the evaluation of the papers.

* All these arrangements (papers submission and registration) must finish before the announcement of the final program.

List of conferences: Rhodes&lt;/pre&gt;</description>
    <dc:creator>Nikos Mastorakis</dc:creator>
    <dc:date>2013-05-21T12:08:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225212">
    <title>Your windows version has virus ?</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225212</link>
    <description>&lt;pre&gt;Hi.

  I just downloaded your Windows version, and got a virus attack, and a trojan.

  So sad to try "a new world" on the net, and then getting attacked. What to do ? Any clues ?

Sincerely
  A very very very disapointed - Klavs.

Ps : both McAfee, Symantec and Kaspersky find these attacks.

Sendt fra min iPhone--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Klavs Rommedahl</dc:creator>
    <dc:date>2013-05-23T04:20:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225192">
    <title>is it just me, or does --all ignore --no-tags?</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225192</link>
    <description>&lt;pre&gt;I have some peculiar reasons for doing this, but nonetheless I don't
believe there's anything illegal here. I have a repo with a bunch of
remotes set up to pull in branches and tags from different places, and
I need all those branches and tags name-spaced. Eg. to illustrate, the
config looks something like;

[core]
        repositoryformatversion = 0
        filemode = true
        bare = true
[remote "foo"]
        url = git://some.address/foo
        fetch = +refs/heads/*:refs/remotes/foo/heads/*
        fetch = +refs/tags/*:refs/remotes/foo/tags/*
[remote "bar"]
        url = git://somewhere.else/bar
        fetch = +refs/heads/*:refs/remotes/bar/heads/*
        fetch = +refs/tags/*:refs/remotes/bar/tags/*

If I do "git fetch --no-tags foo &amp;amp;&amp;amp; git fetch --no-tags bar",
everything's fine - all the branches and tags from "foo" sit under
refs/remotes/foo/{heads,tags}/, and similarly for "bar". OTOH, if I do
"git fetch --all --no-tags", it's as though the --no-tags wasn't
there. Inverting the argument order do&lt;/pre&gt;</description>
    <dc:creator>Geoff Thorpe</dc:creator>
    <dc:date>2013-05-22T21:16:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225170">
    <title>Remote branch can not be resolved as commit?</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225170</link>
    <description>&lt;pre&gt;I am trying to setup a repository for use inside the LAN, but I have 
been unable to checkout any branch so far. I am very new to git.

The repository is being served from gitblit over https. I have 
GIT_SSL_NO_VERIFY=true. The repository was created from git svn.

git ls-remote

shows the remote branches, e.g.:

... refs/remotes/2.0.3
... refs/remotes/trunk

git branch -r

shows none of the remote branches.

git checkout -b new-2.0.3 origin/2.0.3

produces:

fatal: git checkout: updating paths is incompatible with switching branches.
Did you intend to checkout 'origin/2.0.3' which can not be resolved as 
commit?

What does that mean?

I get the same result after each of these:

git fetch

git remote update
git fetch

git add remote stage-repo https://example.com:8443/git/blah-tools.git
git fetch stage-repo
git checkout -b new-2.0.3 stage-repo/2.0.3

Can you explain what the error message means, and what I am doing wrong?

Kendall


&lt;/pre&gt;</description>
    <dc:creator>Kendall Shaw</dc:creator>
    <dc:date>2013-05-22T14:29:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225154">
    <title>[PATCH] Geolocation support</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225154</link>
    <description>&lt;pre&gt;Hi all,

this is a hack I made a couple of years ago in order to store my current
location in git commits (I travel a lot and being able to associate a
place with the commit date helps me to quickly recover what were doing
at that time). Long story short, the screeenshot at
http://tinypic.com/r/wars40/5 shows the new gitk interface once this
patch has been integrated. Geolocation is controlled by two envvars
GIT_AUTHOR_PLACE and COMMITTER_PLACE, respectively. You can set them via
something like this:

function gitenv {
    DATA="`tail -n1 /etc/geotags.dat`"

    CITY="`echo \"$DATA\" | cut -d ',' -f 6 | sed -r 's/^\s+//'`"
    COUNTRY="`echo \"$DATA\" | cut -d ',' -f 5 | sed -r 's/^\s+//'`"
    LAT="`echo \"$DATA\" | cut -d ',' -f 2 | sed -r 's/^\s+//'`"
    LON="`echo \"$DATA\" | cut -d ',' -f 3 | sed -r 's/^\s+//'`"

    if [ -n "$CITY" ] ; then
export GIT_AUTHOR_PLACE="$CITY, $COUNTRY ($LAT, $LON)"
export GIT_COMMITTER_PLACE="$CITY, $COUNTRY ($LAT, $LON)"
    else
export GIT_AUTHOR_PLACE="$COUNTRY ($LA&lt;/pre&gt;</description>
    <dc:creator>Alessandro Di Marco</dc:creator>
    <dc:date>2013-05-22T13:25:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225146">
    <title>first parent, commit graph layout, and pull merge direction</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225146</link>
    <description>&lt;pre&gt;Hi everyone,

I'm just looking into better displays of the commit graph (as
displayed with gitk, smartgit, fisheye) - they tend to quickly
dissolve into a heap of spaghetti.

We had the idea that treating the first parent specially would
have some advantage here - including graphically indicating which
one of the parents of a commit is the first parent. (For instance,
by letting that line leave the commit node at the top/bottom,
and the other(s) to the side.)

A short trial showed that representing first parent chains as
straight lines in the graph does actually improve understandability,
as feature branches clearly stand out as separate lines even when
they no longer carry a branch name.

Does any GUI already do that (treat first parent specially),
or does anybody think of doing such? I don't quite dare to
jump into the gitk code yet.

Also, there is an implication with 'git pull': You'd expect the
master branch to be a first parent line, but when I do a small
thing directly on master and need to pull befor&lt;/pre&gt;</description>
    <dc:creator>Andreas Krey</dc:creator>
    <dc:date>2013-05-22T11:50:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225145">
    <title>[PATCH] push: document --no-verify</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225145</link>
    <description>&lt;pre&gt;commit ec55559f937727bcb0fa8a3dfe6af68c188e968a added
--no-verify flag to git push, but didn't document it.
It's a useful flag when using pre-push hooks so
add the documentation.

Suggested-by: Thomas Rast &amp;lt;trast&amp;lt; at &amp;gt;inf.ethz.ch&amp;gt;
Cc: Aaron Schrab &amp;lt;aaron&amp;lt; at &amp;gt;schrab.com&amp;gt;
Signed-off-by: Michael S. Tsirkin &amp;lt;mst&amp;lt; at &amp;gt;redhat.com&amp;gt;
---
 Documentation/git-push.txt | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt
index d514813..346b28a 100644
--- a/Documentation/git-push.txt
+++ b/Documentation/git-push.txt
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -11,7 +11,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; SYNOPSIS
 [verse]
 'git push' [--all | --mirror | --tags] [--follow-tags] [-n | --dry-run] [--receive-pack=&amp;lt;git-receive-pack&amp;gt;]
    [--repo=&amp;lt;repository&amp;gt;] [-f | --force] [--prune] [-v | --verbose] [-u | --set-upstream]
-   [&amp;lt;repository&amp;gt; [&amp;lt;refspec&amp;gt;...]]
+   [--no-verify]  [&amp;lt;repository&amp;gt; [&amp;lt;refspec&amp;gt;...]]
 
 DESCRIPTION
 -----------
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -162,6 +162,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; useful if you write an alias or script around 'git push'.
 linkgit:git-pull[1] an&lt;/pre&gt;</description>
    <dc:creator>Michael S. Tsirkin</dc:creator>
    <dc:date>2013-05-22T10:43:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225142">
    <title>[PATCH v2 0/2] Fix invalid revision error messages</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225142</link>
    <description>&lt;pre&gt;As Junio pointed out in [0/2], this is not for 1.8.3; it's just a
regular "enhacement".

In [1/2], I've extended the commit message with the justification I
wrote out for Junio.

In [2/2], I've made sure to print the "correct" error message
everytime: I missed the detached HEAD case last time.  I'm not in
favor of anything "prettier", as I already explained in my email.

Thanks.

Ramkumar Ramachandra (2):
  sha1_name: fix error message for &amp;lt; at &amp;gt;{u}
  sha1_name: fix error message for &amp;lt; at &amp;gt;{&amp;lt;N&amp;gt;}, &amp;lt; at &amp;gt;{&amp;lt;date&amp;gt;}

 sha1_name.c                   | 23 +++++++++++++++++------
 t/t1507-rev-parse-upstream.sh | 15 +++++----------
 2 files changed, 22 insertions(+), 16 deletions(-)

&lt;/pre&gt;</description>
    <dc:creator>Ramkumar Ramachandra</dc:creator>
    <dc:date>2013-05-22T10:39:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225141">
    <title>[PATCH] Document push --no-verify</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225141</link>
    <description>&lt;pre&gt;ec55559 (push: Add support for pre-push hooks, 2013-01-13) forgot to
add a note to git-push(1) about the new --no-verify option.

Signed-off-by: Thomas Rast &amp;lt;trast&amp;lt; at &amp;gt;inf.ethz.ch&amp;gt;
---

The insertion spot is at the end, because the existing ordering is
indistinguishable from random.  This should also be fixed, but is a
much bigger change and probably not suitable for an -rc period.


 Documentation/git-push.txt | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt
index d514813..426b3d2 100644
--- a/Documentation/git-push.txt
+++ b/Documentation/git-push.txt
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -11,7 +11,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; SYNOPSIS
 [verse]
 'git push' [--all | --mirror | --tags] [--follow-tags] [-n | --dry-run] [--receive-pack=&amp;lt;git-receive-pack&amp;gt;]
    [--repo=&amp;lt;repository&amp;gt;] [-f | --force] [--prune] [-v | --verbose] [-u | --set-upstream]
-   [&amp;lt;repository&amp;gt; [&amp;lt;refspec&amp;gt;...]]
+   [--no-verify] [&amp;lt;repository&amp;gt; [&amp;lt;refspec&amp;gt;...]]
 
 DESCRIPTION
 -----------
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -195,6 +195,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; useful if you write &lt;/pre&gt;</description>
    <dc:creator>Thomas Rast</dc:creator>
    <dc:date>2013-05-22T09:23:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.version-control.git/225125">
    <title>[PATCH] guilt: fix date parsing</title>
    <link>http://comments.gmane.org/gmane.comp.version-control.git/225125</link>
    <description>&lt;pre&gt;If the date field has a space in it, such as:

   Date: Tue, 14 May 2013 18:37:15 +0200

previously guilt would go belly up:

   + export GIT_AUTHOR_DATE=Tue, 14 May 2013 18:37:15 +0200
   /usr/local/bin/guilt: 571: export: 14: bad variable name

Fix this.

Signed-off-by: "Theodore Ts'o" &amp;lt;tytso&amp;lt; at &amp;gt;mit.edu&amp;gt;
---
 guilt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guilt b/guilt
index 9953bdf..6e8d542 100755
--- a/guilt
+++ b/guilt
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -568,7 +568,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; commit()
 author_date_str=`sed -n -e '/^Date:/ { s/^Date: //; p; q; }; /^(diff |---$|--- )/ q' "$p"`
 fi
 if [ ! -z "$author_date_str" ]; then
-export GIT_AUTHOR_DATE=`echo $author_date_str`
+export GIT_AUTHOR_DATE="$author_date_str"
 fi
 fi
 
&lt;/pre&gt;</description>
    <dc:creator>Theodore Ts'o</dc:creator>
    <dc:date>2013-05-22T03:13:31</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.version-control.git">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.version-control.git</link>
  </textinput>
</rdf:RDF>
