<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/windows, branch gitgui-0.19.0</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=gitgui-0.19.0</id>
<link rel='self' href='https://git.shady.money/git/atom?h=gitgui-0.19.0'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2014-01-18T17:06:41Z</updated>
<entry>
<title>git-gui: chmod +x po2msg, windows/git-gui.sh</title>
<updated>2014-01-18T17:06:41Z</updated>
<author>
<name>Jonathan Nieder</name>
<email>jrnieder@gmail.com</email>
</author>
<published>2013-11-25T21:01:05Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c64a0ad385d117c7a4a83771259e021dd196e7cb'/>
<id>urn:sha1: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>
</entry>
<entry>
<title>git-gui: fix PATH environment for mingw development environment</title>
<updated>2010-07-30T08:57:26Z</updated>
<author>
<name>Heiko Voigt</name>
<email>hvoigt@hvoigt.net</email>
</author>
<published>2010-02-27T20:47:42Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4c79adc5c05de52a08f5e8a9615c9d6c9fe9a991'/>
<id>urn:sha1:4c79adc5c05de52a08f5e8a9615c9d6c9fe9a991</id>
<content type='text'>
When creating a desktop shortcut from the gui the shortcut directly
starts wish with the git-gui script. In the msysgit development
environment some dll's reside in the mingw/bin directory which causes
that git can not start because libiconv2.dll is not found.

When using such a link the error is even more cryptic stating:
"child killed: unknown signal"

Signed-off-by: Heiko Voigt &lt;hvoigt@hvoigt.net&gt;
Signed-off-by: Johannes Schindelin &lt;johannes.schindelin@gmx.de&gt;
Signed-off-by: Pat Thoyts &lt;patthoyts@users.sourceforge.net&gt;
</content>
</entry>
<entry>
<title>git-gui (Win): make starting via "Git GUI Here" on .git/ possible</title>
<updated>2009-04-05T20:06:24Z</updated>
<author>
<name>Markus Heidelberg</name>
<email>markus.heidelberg@web.de</email>
</author>
<published>2009-03-31T23:55:39Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b01d4326040ec6b9d98baba32091c9458fc809d4'/>
<id>urn:sha1:b01d4326040ec6b9d98baba32091c9458fc809d4</id>
<content type='text'>
This works around git-gui's error message

    Cannot use funny .git directory: .

when started from the .git/ directory, which is useful in repositories
without any directories for the right click.

Now git-gui can be started via Windows Explorer shell extension (Git GUI
Here) from the .git/ directory.

Signed-off-by: Markus Heidelberg &lt;markus.heidelberg@web.de&gt;
Signed-off-by: Shawn O. Pearce &lt;spearce@spearce.org&gt;
</content>
</entry>
<entry>
<title>git-gui (Windows): Change wrapper to execdir 'libexec/git-core'</title>
<updated>2008-07-30T05:43:37Z</updated>
<author>
<name>Steffen Prohaska</name>
<email>prohaska@zib.de</email>
</author>
<published>2008-07-27T16:49:43Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=5fc6edab76ea16c5fad7138389c2fcc2076534e7'/>
<id>urn:sha1:5fc6edab76ea16c5fad7138389c2fcc2076534e7</id>
<content type='text'>
git-gui needs bindir in PATH to be able to run 'git'.  bindir
however is not necessarily in PATH if started directly through a
Windows shortcut.  Therefore, we used to add the directory
git-gui is located in.  But with the new 'libexec/git-core'
layout this directory is no longer identical to bindir.

This commit modifies the wrapper script to discover the bindir
and add it to PATH.

Signed-off-by: Steffen Prohaska &lt;prohaska@zib.de&gt;
Signed-off-by: Shawn O. Pearce &lt;spearce@spearce.org&gt;
</content>
</entry>
<entry>
<title>git-gui: add mingw specific startup wrapper</title>
<updated>2007-10-10T07:50:01Z</updated>
<author>
<name>Steffen Prohaska</name>
<email>prohaska@zib.de</email>
</author>
<published>2007-10-10T06:58:59Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=99fe594d9677d55d773db3ab180310a3d3bf090b'/>
<id>urn:sha1:99fe594d9677d55d773db3ab180310a3d3bf090b</id>
<content type='text'>
The wrapper adds the directory it is installed in to PATH.
This is required for the git commands implemented in shell.
git-gui fails to launch them if PATH is not modified.

The wrapper script also accepts an optional command line
switch '--working-dir &lt;dir&gt;' and changes to &lt;dir&gt; before
launching the actual git-gui. This is required to implement
the "Git Gui Here" Explorer shell extension.

As a last step the original git-gui script is launched,
which is expected to be located in the same directory
under the name git-gui.tcl.

Signed-off-by: Steffen Prohaska &lt;prohaska@zib.de&gt;
Signed-off-by: Shawn O. Pearce &lt;spearce@spearce.org&gt;
</content>
</entry>
</feed>
