<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/git.git, branch jl/git-gui-show-added-submodule-changes</title>
<subtitle>github.com: git/git.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/'/>
<entry>
<title>git-gui: show staged submodules regardless of ignore config</title>
<updated>2014-04-15T22:27:49+00:00</updated>
<author>
<name>Jens Lehmann</name>
<email>Jens.Lehmann@web.de</email>
</author>
<published>2014-04-08T19:30:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=966ab9581a99c26b7be38e37e18c3f6158833059'/>
<id>966ab9581a99c26b7be38e37e18c3f6158833059</id>
<content type='text'>
Currently setting submodule.&lt;name&gt;.ignore and/or diff.ignoreSubmodules to
"all" suppresses all output of submodule changes for git-gui. This is
really confusing, as even when the user chooses to record a new commit for
an ignored submodule by adding it manually this change won't show up under
"Staged Changes (Will Commit)".

Fix that by using the '--ignore-submodules=dirty' option for both callers
of "git diff-index --cached" when the underlying git version supports that
option.

Signed-off-by: Jens Lehmann &lt;Jens.Lehmann@web.de&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently setting submodule.&lt;name&gt;.ignore and/or diff.ignoreSubmodules to
"all" suppresses all output of submodule changes for git-gui. This is
really confusing, as even when the user chooses to record a new commit for
an ignored submodule by adding it manually this change won't show up under
"Staged Changes (Will Commit)".

Fix that by using the '--ignore-submodules=dirty' option for both callers
of "git diff-index --cached" when the underlying git version supports that
option.

Signed-off-by: Jens Lehmann &lt;Jens.Lehmann@web.de&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui 0.19</title>
<updated>2014-01-18T17:29:34+00:00</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2014-01-18T17:29:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=1b2c79e63e5afa3cecb3ab4a40cb414dbe6511ce'/>
<id>1b2c79e63e5afa3cecb3ab4a40cb414dbe6511ce</id>
<content type='text'>
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui: chmod +x po2msg, windows/git-gui.sh</title>
<updated>2014-01-18T17:06:41+00:00</updated>
<author>
<name>Jonathan Nieder</name>
<email>jrnieder@gmail.com</email>
</author>
<published>2013-11-25T21:01:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=c64a0ad385d117c7a4a83771259e021dd196e7cb'/>
<id>c64a0ad385d117c7a4a83771259e021dd196e7cb</id>
<content type='text'>
The Makefile only runs po/po2msg.sh using tclsh, but because the
script has the usual tcl preamble starting with #!/bin/sh it can also
be run directly.

The Windows git-gui wrapper is usable in-place for the same reason.

Signed-off-by: Jonathan Nieder &lt;jrnieder@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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Makefile only runs po/po2msg.sh using tclsh, but because the
script has the usual tcl preamble starting with #!/bin/sh it can also
be run directly.

The Windows git-gui wrapper is usable in-place for the same reason.

Signed-off-by: Jonathan Nieder &lt;jrnieder@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;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui: fallback right pane to packed widgets with Tk 8.4</title>
<updated>2014-01-18T16:51:15+00:00</updated>
<author>
<name>Max Kirillov</name>
<email>max@max630.net</email>
</author>
<published>2014-01-14T23:58:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=02f6cfbd1628d9e99a241d18d805f3842dc746e7'/>
<id>02f6cfbd1628d9e99a241d18d805f3842dc746e7</id>
<content type='text'>
Since 918dbf58, git-gui crashes if started with Tk 8.4. The reason is that
tk &lt; 8.5 does not support -stretch option for panedwindow.

Without the option it's not possible to properly expand the right half -
the commit area is expanded, while desired behavior is to expand the diff
area. So the whole feature should be disabled with Tk
version less than 8.5.

Signed-off-by: Max Kirillov &lt;max@max630.net&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since 918dbf58, git-gui crashes if started with Tk 8.4. The reason is that
tk &lt; 8.5 does not support -stretch option for panedwindow.

Without the option it's not possible to properly expand the right half -
the commit area is expanded, while desired behavior is to expand the diff
area. So the whole feature should be disabled with Tk
version less than 8.5.

Signed-off-by: Max Kirillov &lt;max@max630.net&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui i18n: Added Bulgarian translation</title>
<updated>2014-01-18T16:32:13+00:00</updated>
<author>
<name>Alexander Shopov</name>
<email>ash@kambanaria.org</email>
</author>
<published>2014-01-15T11:07:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=1ea11f0e459e55b062d7ffb30c9eb6a10838ebd5'/>
<id>1ea11f0e459e55b062d7ffb30c9eb6a10838ebd5</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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Shopov &lt;ash@kambanaria.org&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui l10n: Add 29 more terms to glossary</title>
<updated>2014-01-18T16:32:09+00:00</updated>
<author>
<name>Alexander Shopov</name>
<email>ash@kambanaria.org</email>
</author>
<published>2014-01-15T11:07:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=15a745305f04d4ee0704c37b06891b19020dc7f1'/>
<id>15a745305f04d4ee0704c37b06891b19020dc7f1</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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Shopov &lt;ash@kambanaria.org&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui i18n: Initial glossary in Bulgarian</title>
<updated>2014-01-18T16:32:04+00:00</updated>
<author>
<name>Alexander Shopov</name>
<email>ash@kambanaria.org</email>
</author>
<published>2014-01-15T11:07:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=99337ef22ca013758dd243e06b10c6851b786e87'/>
<id>99337ef22ca013758dd243e06b10c6851b786e87</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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Shopov &lt;ash@kambanaria.org&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui: correct spelling errors in comments</title>
<updated>2013-11-15T20:44:08+00:00</updated>
<author>
<name>Masanari Iida</name>
<email>standby24x7@gmail.com</email>
</author>
<published>2013-11-12T15:17:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=73fd416b291cdd70e30cb889e9ebcf10188d2342'/>
<id>73fd416b291cdd70e30cb889e9ebcf10188d2342</id>
<content type='text'>
Signed-off-by: Masanari Iida &lt;standby24x7@gmail.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Masanari Iida &lt;standby24x7@gmail.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui: add menu item to launch a bash shell on Windows.</title>
<updated>2013-09-12T20:15:19+00:00</updated>
<author>
<name>Pat Thoyts</name>
<email>patthoyts@users.sourceforge.net</email>
</author>
<published>2013-09-12T20:15:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=224cce8f9bb0403ec441ec709d2769adb8f66eb0'/>
<id>224cce8f9bb0403ec441ec709d2769adb8f66eb0</id>
<content type='text'>
When using git-gui as the primary git application on Windows it can be
awkward obtaining a suitable shell. This commit adds a menu item to the
Repository menu that launches the bash shell provided with the git
installation on Windows.

Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When using git-gui as the primary git application on Windows it can be
awkward obtaining a suitable shell. This commit adds a menu item to the
Repository menu that launches the bash shell provided with the git
installation on Windows.

Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-gui: corrected setup of git worktree under cygwin.</title>
<updated>2013-09-06T21:42:07+00:00</updated>
<author>
<name>John Murphy</name>
<email>john.murphy@baml.com</email>
</author>
<published>2013-09-04T15:03:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=4394faf6e53e8b91c82332aa4f2b77616350a81b'/>
<id>4394faf6e53e8b91c82332aa4f2b77616350a81b</id>
<content type='text'>
Under cygwin the _gitworktree variable needs to contain the Windows
style path string so the output provided by git rev-parse must
be converted from cygwin path style to native.

Reviewed-by: Jesse Welch &lt;jesse.welch@baml.com&gt;
Signed-off-by: John Patrick Murphy &lt;john.murphy@baml.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Under cygwin the _gitworktree variable needs to contain the Windows
style path string so the output provided by git rev-parse must
be converted from cygwin path style to native.

Reviewed-by: Jesse Welch &lt;jesse.welch@baml.com&gt;
Signed-off-by: John Patrick Murphy &lt;john.murphy@baml.com&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</pre>
</div>
</content>
</entry>
</feed>
