<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch gitgui-0.18.0</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=gitgui-0.18.0</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=gitgui-0.18.0'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2013-06-15T22:53:34Z</updated>
<entry>
<title>git-gui 0.18</title>
<updated>2013-06-15T22:53:34Z</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2013-06-15T22:53:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=8a383db4b28059becc3ebfd1b402299e34c3151f'/>
<id>urn:sha1:8a383db4b28059becc3ebfd1b402299e34c3151f</id>
<content type='text'>
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: avoid an error message when removing the last remote</title>
<updated>2013-06-15T22:36:27Z</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2013-06-15T22:36:27Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5c37033edf7963616038ff8b980047d5671e168e'/>
<id>urn:sha1:5c37033edf7963616038ff8b980047d5671e168e</id>
<content type='text'>
When the last remote is removed on a system that has tearoff menu items
the code that adjusts the fetch and prune menus may raise an error when
probing the menu entry for a non-existing -label option.
Check the entry type to avoid this fault.

Reported-by: Vedran Miletić &lt;rivanvx@gmail.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: fix file name handling with non-empty prefix</title>
<updated>2013-06-07T22:03:29Z</updated>
<author>
<name>John Keeping</name>
<email>john@keeping.me.uk</email>
</author>
<published>2013-04-27T13:24:16Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=2f38dd03fcefb7ad3a6db2703eeb6dd9b4fd34b6'/>
<id>urn:sha1:2f38dd03fcefb7ad3a6db2703eeb6dd9b4fd34b6</id>
<content type='text'>
Commit e3d06ca (git-gui: Detect full path when parsing arguments -
2012-10-02) fixed the handling of absolute paths passed to the browser
and blame subcommands by checking whether the file exists without the
prefix before prepending the prefix and checking again.  Since we have
chdir'd to the top level of the working tree before doing this, this
does not work if a file with the same name exists in a subdirectory and
at the top level (for example Makefile in git.git's t/ directory).

Instead of doing this, revert that patch and fix absolute path issue by
using "file join" to prepend the prefix to the supplied path.  This will
correctly handle absolute paths by skipping the prefix in that case.

Acked-by: Andrew Wong &lt;andrew.kw.w@gmail.com&gt;
Signed-off-by: John Keeping &lt;john@keeping.me.uk&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: bring wish process to front on Mac</title>
<updated>2013-06-07T00:34:42Z</updated>
<author>
<name>Stefan Haller</name>
<email>stefan@haller-berlin.de</email>
</author>
<published>2013-06-06T08:17:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7d2017e7738ace254d0b653ce844d07af8ecf026'/>
<id>urn:sha1:7d2017e7738ace254d0b653ce844d07af8ecf026</id>
<content type='text'>
On Mac OS X, any application that is started from the Terminal will open
behind all running applications; as a work-around, manually bring ourselves
to the front. (Stolen from gitk, commit 76bf6ff93e.)

We do this as the very first thing, so that any message boxes that might pop
up during the rest of the startup sequence are actually seen by the user.

[PT: added catch and moved down to ensure Tk has been loaded]

Signed-off-by: Stefan Haller &lt;stefan@haller-berlin.de&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: change dialog button positions for Windows to suit platform.</title>
<updated>2013-05-17T09:51:01Z</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2013-05-17T09:51:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ed05e9f6c027a23ce45bcdbac4196058ed5d0e07'/>
<id>urn:sha1:ed05e9f6c027a23ce45bcdbac4196058ed5d0e07</id>
<content type='text'>
On windows it is more common to have cancel furthest on the right.

Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: allow "\ No newline at end of file" for linewise staging</title>
<updated>2013-05-16T22:40:59Z</updated>
<author>
<name>Heiko Voigt</name>
<email>hvoigt@hvoigt.net</email>
</author>
<published>2013-05-09T16:30:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=1fcd24d04358ea10c296a414e2b93f3714adca4b'/>
<id>urn:sha1:1fcd24d04358ea10c296a414e2b93f3714adca4b</id>
<content type='text'>
Counting of lines did not skip this line when generating the hunk
header.

Acked-by: Tobias Preuss &lt;tobias.preuss@googlemail.com&gt;
Signed-off-by: Heiko Voigt &lt;hvoigt@hvoigt.net&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: fix the mergetool launcher for the Beyond Compare tool.</title>
<updated>2013-02-22T20:13:21Z</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2013-02-22T20:13:21Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=60468d6c893a6ad8795869d979a601e47cb90732'/>
<id>urn:sha1:60468d6c893a6ad8795869d979a601e47cb90732</id>
<content type='text'>
When using Beyond Compare as the mergetool it fails to save the merged
result correctly due to a quoting problem when executing the tool.
This patch solves the quoting problem.

Signed-off-by: Warren Falk &lt;warren@warrenfalk.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>Makefile: replace "echo 1&gt;..." with "echo &gt;..."</title>
<updated>2012-12-25T00:21:59Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2012-12-18T18:47:20Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=9f316463ba00576d6c848bf50194b72246e8f9ab'/>
<id>urn:sha1:9f316463ba00576d6c848bf50194b72246e8f9ab</id>
<content type='text'>
This is clearer to many people this way.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>French translation: copy -&gt; copie.</title>
<updated>2012-11-28T21:29:21Z</updated>
<author>
<name>Grahack</name>
<email>christophegragnic@gmail.com</email>
</author>
<published>2012-11-28T14:49:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ab571ef02f5fc0d08bf2dce4e455d324e40fb220'/>
<id>urn:sha1:ab571ef02f5fc0d08bf2dce4e455d324e40fb220</id>
<content type='text'>
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: Fix parsing of &lt;rev&gt; &lt;path-which-not-present-in-worktree&gt;</title>
<updated>2012-11-13T23:52:14Z</updated>
<author>
<name>Kirill Smelkov</name>
<email>kirr@mns.spb.ru</email>
</author>
<published>2012-11-13T12:30:17Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=552ee61ece4dad7a42012d83a7271e4b5464cb2e'/>
<id>urn:sha1:552ee61ece4dad7a42012d83a7271e4b5464cb2e</id>
<content type='text'>
Commit e3d06ca9 (git-gui: Detect full path when parsing arguments) broke

    git gui blame rev path-not-present-in-worktree

in particular this does not work anymore:

    # in linux.git
    $ git gui blame 2bb8c26242c2393b097a993ffe9b003ec9b85395 drivers/net/sky2.c

This patch restores the original functionality in this case.

Acked-by: Andrew Wong &lt;andrew.kw.w@gmail.com&gt;
Signed-off-by: Kirill Smelkov &lt;kirr@mns.spb.ru&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
</feed>
