<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch gitgui-0.20.0</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=gitgui-0.20.0</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=gitgui-0.20.0'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2015-04-18T11:15:32Z</updated>
<entry>
<title>git-gui: set version 0.20</title>
<updated>2015-04-18T11:15:32Z</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2015-04-18T11:15:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=4498b3a50a0e839788682f672df267cbc1ba9292'/>
<id>urn:sha1:4498b3a50a0e839788682f672df267cbc1ba9292</id>
<content type='text'>
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: sv.po: Update Swedish translation (547t0f0u)</title>
<updated>2015-04-18T11:03:50Z</updated>
<author>
<name>Peter Krefting</name>
<email>peter@softwolves.pp.se</email>
</author>
<published>2015-03-27T09:25:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5a5c11f19d11cb2b86cd0adf8e7e53ba28ae75ea'/>
<id>urn:sha1:5a5c11f19d11cb2b86cd0adf8e7e53ba28ae75ea</id>
<content type='text'>
Signed-off-by: Peter Krefting &lt;peter@softwolves.pp.se&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui i18n: Updated Bulgarian translation (547t,0f,0u)</title>
<updated>2015-04-18T10:51:39Z</updated>
<author>
<name>Alexander Shopov</name>
<email>ash@kambanaria.org</email>
</author>
<published>2015-04-07T15:29:46Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=de18648212d280aed724efc7fd1ad83a0caf53b7'/>
<id>urn:sha1:de18648212d280aed724efc7fd1ad83a0caf53b7</id>
<content type='text'>
Signed-off-by: Alexander Shopov &lt;ash@kambanaria.org&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: Makes chooser set 'gitdir' to the resolved path</title>
<updated>2015-03-07T12:29:03Z</updated>
<author>
<name>Remi Rampin</name>
<email>remirampin@gmail.com</email>
</author>
<published>2015-03-06T16:21:53Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=83da013998a93bf3413eae4bf8d6aca01550188b'/>
<id>urn:sha1:83da013998a93bf3413eae4bf8d6aca01550188b</id>
<content type='text'>
If _is_git follows a "gitdir: ..." file link to get to the actual
repository, we want _gitdir to be set to that final path.

Signed-off-by: Chris Packham &lt;judge.packham@gmail.com&gt;
Signed-off-by: Remi Rampin &lt;remirampin@gmail.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: Fixes chooser not accepting gitfiles</title>
<updated>2015-03-07T12:28:58Z</updated>
<author>
<name>Remi Rampin</name>
<email>remirampin@gmail.com</email>
</author>
<published>2015-03-06T16:21:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=cc6825e194c86382068548354faa43839410a8d3'/>
<id>urn:sha1:cc6825e194c86382068548354faa43839410a8d3</id>
<content type='text'>
Support the case where .git is a platform independent symbolic link
and not a directory. This occurs when --separate-git-dir is used when
creating the local repository to store the .git directory elsewhere.

git-gui does not support such repositories when using the repository
chooser as the test to determine that the chosen directory is a git
repository fails for such repositories.

This commit enables _is_git to read the real location from the
symbolic link file.

Signed-off-by: Chris Packham &lt;judge.packham@gmail.com&gt;
Signed-off-by: Remi Rampin &lt;remirampin@gmail.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: reinstate support for Tcl 8.4</title>
<updated>2015-01-13T00:42:03Z</updated>
<author>
<name>Kyle J. McKay</name>
<email>mackyle@gmail.com</email>
</author>
<published>2015-01-06T10:41:21Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ce3e848b409a6ba30fe9e12354f309424ac247cd'/>
<id>urn:sha1:ce3e848b409a6ba30fe9e12354f309424ac247cd</id>
<content type='text'>
Tcl 8.5 introduced an extended vsatisfies syntax that is not
supported by Tcl 8.4.

Since only Tcl 8.4 is required this presents a problem.

The extended syntax was used starting with Git 2.0.0 in commit
b3f0c5c0 (git-gui: tolerate major version changes when comparing the
git version, 2014-05-17), so that a major version change would still
satisfy the condition.

However, what we really want is just a basic version compare, so use
vcompare instead to restore compatibility with Tcl 8.4.

Signed-off-by: Kyle J. McKay &lt;mackyle@gmail.com&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>git-gui: fix problem with gui.maxfilesdisplayed</title>
<updated>2015-01-05T16:13:25Z</updated>
<author>
<name>Csaba Kiraly</name>
<email>kiraly@disi.unitn.it</email>
</author>
<published>2014-12-15T15:38:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a117fa211671b01449c81c7aed6766e55cb55c38'/>
<id>urn:sha1:a117fa211671b01449c81c7aed6766e55cb55c38</id>
<content type='text'>
gui.maxfilesdisplayed (added in dd6451f9c7c5a36d3006231b618ac6da06c7c7b4)
was applied brute force on the file list in alphabetic order. As a result,
files that had modifications might not be displayed by git-gui. Even
worse, files that are already in the index might not be displayed, which
makes git-gui hard to use in some workflows.

This fix changes the meaning of gui.maxfilesdisplayed, making it a soft
limit that only applies to "_O" files, i.e. files that are "Untracked,
not staged".

Signed-off-by: Csaba Kiraly &lt;kiraly@disi.unitn.it&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: fix verbose loading when git path contains spaces.</title>
<updated>2014-11-07T00:37:28Z</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2014-11-07T00:37:28Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=cdc6aba8c52af4ac4338a1e9fb1028ca3337a5e3'/>
<id>urn:sha1:cdc6aba8c52af4ac4338a1e9fb1028ca3337a5e3</id>
<content type='text'>
After setting GITGUI_VERBOSE to enable load tracing the source command is
redefined but fails if the git installation path has spaces. Fixed quoting
by using lists to handle the arguments.

Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui/gitk: Do not depend on Cygwin's "kill" command on Windows</title>
<updated>2014-11-06T22:13:32Z</updated>
<author>
<name>Sebastian Schuberth</name>
<email>sschuberth@gmail.com</email>
</author>
<published>2014-10-23T19:30:54Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=3b422bc85495d93dd2e3f3ee1f7c792193393687'/>
<id>urn:sha1:3b422bc85495d93dd2e3f3ee1f7c792193393687</id>
<content type='text'>
Windows does not necessarily mean Cygwin, it could also be MSYS. The
latter ships with a version of "kill" that does not understand "-f". In
msysgit this was addressed shipping Cygwin's version of kill.

Properly fix this by using the stock Windows "taskkill" command instead,
which is available since Windows XP Professional.

Signed-off-by: Sebastian Schuberth &lt;sschuberth@gmail.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui: add configurable tab size to the diff view</title>
<updated>2014-10-06T09:34:52Z</updated>
<author>
<name>Michael Lutz</name>
<email>michi@icosahedron.de</email>
</author>
<published>2012-02-12T15:55:17Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a43c5f51a4b1e56b746295f19daa240283092005'/>
<id>urn:sha1:a43c5f51a4b1e56b746295f19daa240283092005</id>
<content type='text'>
For Tk 8.5 the "wordprocessor" mode allows us to get a bit fancy for merge
diffs and intend the tabs by one to compensate for the additional diff
marker at the line start.

The code is heavily based on how gitk handles tabs.

Signed-off-by: Michael Lutz &lt;michi@icosahedron.de&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
</feed>
