<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/git-gui, branch v2.10.3</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://www.git.shady.money/git/atom?h=v2.10.3</id>
<link rel='self' href='https://www.git.shady.money/git/atom?h=v2.10.3'/>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/'/>
<updated>2016-10-11T21:20:37Z</updated>
<entry>
<title>Merge branch 'rs/git-gui-use-modern-git-merge-syntax' into maint</title>
<updated>2016-10-11T21:20:37Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2016-10-11T21:20:37Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=0bc409dab941d7df065c486342cefcde78647c42'/>
<id>urn:sha1:0bc409dab941d7df065c486342cefcde78647c42</id>
<content type='text'>
The original command line syntax for "git merge", which was "git
merge &lt;msg&gt; HEAD &lt;parent&gt;...", has been deprecated for quite some
time, and "git gui" was the last in-tree user of the syntax.  This
is finally fixed, so that we can move forward with the deprecation.

* rs/git-gui-use-modern-git-merge-syntax:
  git-gui: stop using deprecated merge syntax
</content>
</entry>
<entry>
<title>Merge branch 'js/git-gui-commit-gpgsign' into maint</title>
<updated>2016-09-29T23:49:38Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2016-09-29T23:49:38Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=d7e74c940b9a2f9a8d1c5bfb1c7df5591afb9666'/>
<id>urn:sha1:d7e74c940b9a2f9a8d1c5bfb1c7df5591afb9666</id>
<content type='text'>
"git commit-tree" stopped reading commit.gpgsign configuration
variable that was meant for Porcelain "git commit" in Git 2.9; we
forgot to update "git gui" to look at the configuration to match
this change.

* js/git-gui-commit-gpgsign:
  git-gui: respect commit.gpgsign again
</content>
</entry>
<entry>
<title>Merge branch 'rs/use-modern-git-merge-syntax' of git-gui into rs/git-gui-use-modern-git-merge-syntax</title>
<updated>2016-09-26T14:16:48Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2016-09-26T14:16:29Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=ff65e796f00097c118a85ac40e51405080e98627'/>
<id>urn:sha1:ff65e796f00097c118a85ac40e51405080e98627</id>
<content type='text'>
* 'rs/use-modern-git-merge-syntax' of git-gui:
  git-gui: stop using deprecated merge syntax
</content>
</entry>
<entry>
<title>Merge branch 'js/commit-gpgsign' of ../git-gui into js/git-gui-commit-gpgsign</title>
<updated>2016-09-11T21:54:46Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2016-09-11T21:53:26Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=f14a310e8b665d0f1ac8cd91db3b101873a9bc5e'/>
<id>urn:sha1:f14a310e8b665d0f1ac8cd91db3b101873a9bc5e</id>
<content type='text'>
* 'js/commit-gpgsign' of ../git-gui:
  git-gui: respect commit.gpgsign again
</content>
</entry>
<entry>
<title>Merge branch 'sy/i18n' of git-gui</title>
<updated>2016-09-07T17:24:25Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2016-09-07T17:23:51Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=02748bc7bb327f80c1942e2191801f8e8e337510'/>
<id>urn:sha1:02748bc7bb327f80c1942e2191801f8e8e337510</id>
<content type='text'>
* 'sy/i18n' of git-gui:
  git-gui: update Japanese information
  git-gui: update Japanese translation
  git-gui: add Japanese language code
  git-gui: apply po template to Japanese translation
  git-gui: consistently use the same word for "blame" in Japanese
  git-gui: consistently use the same word for "remote" in Japanese
</content>
</entry>
<entry>
<title>git-gui/po/glossary/txt-to-pot.sh: use the $( ... ) construct for command substitution</title>
<updated>2015-12-27T23:33:13Z</updated>
<author>
<name>Elia Pinto</name>
<email>gitter.spiros@gmail.com</email>
</author>
<published>2015-12-22T14:10:29Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=4796af1510b2dd997d1068755af9910a5ddb60d6'/>
<id>urn:sha1:4796af1510b2dd997d1068755af9910a5ddb60d6</id>
<content type='text'>
The Git CodingGuidelines prefer the $(...) construct for command
substitution instead of using the backquotes `...`.

The backquoted form is the traditional method for command
substitution, and is supported by POSIX.  However, all but the
simplest uses become complicated quickly.  In particular, embedded
command substitutions and/or the use of double quotes require
careful escaping with the backslash character.

The patch was generated by:

for _f in $(find . -name "*.sh")
do
	perl -i -pe 'BEGIN{undef $/;} s/`(.+?)`/\$(\1)/smg'  "${_f}"
done

and then carefully proof-read.

Signed-off-by: Elia Pinto &lt;gitter.spiros@gmail.com&gt;
Reviewed-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge tag 'gitgui-0.20.0' of http://repo.or.cz/r/git-gui</title>
<updated>2015-04-19T01:35:48Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2015-04-19T01:35:48Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=1eb0545cce4a4ed652425798b87cb0e777c03b3f'/>
<id>urn:sha1:1eb0545cce4a4ed652425798b87cb0e777c03b3f</id>
<content type='text'>
git-gui 0.20.0

* tag 'gitgui-0.20.0' of http://repo.or.cz/r/git-gui:
  git-gui: set version 0.20
  git-gui: sv.po: Update Swedish translation (547t0f0u)
  git-gui i18n: Updated Bulgarian translation (547t,0f,0u)
  git-gui: Makes chooser set 'gitdir' to the resolved path
  git-gui: Fixes chooser not accepting gitfiles
  git-gui: reinstate support for Tcl 8.4
  git-gui: fix problem with gui.maxfilesdisplayed
  git-gui: fix verbose loading when git path contains spaces.
  git-gui/gitk: Do not depend on Cygwin's "kill" command on Windows
  git-gui: add configurable tab size to the diff view
  git-gui: Make git-gui lib dir configurable at runime
  git-gui i18n: Updated Bulgarian translation (520t,0f,0u)
  L10n: vi.po (543t): Init translation for Vietnamese
  git-gui: align the new recursive checkbox with the radiobuttons.
  git-gui: Add a 'recursive' checkbox in the clone menu.
</content>
</entry>
<entry>
<title>Merge git://repo.or.cz/git-gui</title>
<updated>2014-06-26T20:44:11Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-06-26T20:44:11Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=ad1c66033e7fa8166825662a56793abedf917d73'/>
<id>urn:sha1:ad1c66033e7fa8166825662a56793abedf917d73</id>
<content type='text'>
* git://repo.or.cz/git-gui:
  git-gui: tolerate major version changes when comparing the git version
  git-gui: show staged submodules regardless of ignore config
</content>
</entry>
<entry>
<title>Merge branch 'jl/use-vsatisfy-correctly-for-2.0'</title>
<updated>2014-05-19T17:35:24Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-05-19T17:35:24Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=5714722f71ea2eff99ba76fd7b04f61ba0142ea4'/>
<id>urn:sha1:5714722f71ea2eff99ba76fd7b04f61ba0142ea4</id>
<content type='text'>
* jl/use-vsatisfy-correctly-for-2.0:
  git-gui: tolerate major version changes when comparing the git version
</content>
</entry>
<entry>
<title>Merge tag 'gitgui-0.19.0' of http://repo.or.cz/r/git-gui</title>
<updated>2014-01-21T21:16:17Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-01-21T21:16:17Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=d9bb4be53bc5185244b4be9860562a012803bacb'/>
<id>urn:sha1:d9bb4be53bc5185244b4be9860562a012803bacb</id>
<content type='text'>
git-gui 0.19.0

* tag 'gitgui-0.19.0' of http://repo.or.cz/r/git-gui:
  git-gui 0.19
  git-gui: chmod +x po2msg, windows/git-gui.sh
  git-gui: fallback right pane to packed widgets with Tk 8.4
  git-gui i18n: Added Bulgarian translation
  git-gui l10n: Add 29 more terms to glossary
  git-gui i18n: Initial glossary in Bulgarian
</content>
</entry>
</feed>
