Olaf Hering (1):
git-gui: sort entries in tclIndex
Orgad Shaneh (1):
git-gui: Do not reset author details on amend
Pat Thoyts (19):
Allow keyboard control to work in the staging widgets.
Amend tab ordering and text widget border and highlighting.
git-gui: fix dete
ot;All"} {
+ && [$fetch_m entrycget end -label] eq
[mc "All"]} {
delete_from_menu $fetch_m end
delete_from_menu $fetch_m end
--
Pat Thoytshttp://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
René Scharfe writes:
>Am 03.10.2016 um 10:30 schrieb Pat Thoyts:
>> The only problem I see here is that generally git-gui tries to continue
>> to work with older versions of git as well. So adding a guard using the
>> git-version procedure should maintain that backwards co
Junio C Hamano writes:
>Junio C Hamano writes:
>
>> Pat Thoyts writes:
>>
>>> I'm just starting to catch up once again. hopefully I can be
>>> a bit more reactive than recently. Merging 52285c83 looks fine. I'll
>>> stick that onto
set paths [concat $paths $untracked_paths]
> }
> }
>- add_helper {Adding all changed files} $paths
>+ add_helper [mc "Adding all changed files"] $paths
> }
>
> proc revert_helper {txt paths} {
This series looks good. Especially
a/lib/tools_dlg.tcl b/lib/tools_dlg.tcl
>index 7eeda9d..c05413c 100644
>--- a/lib/tools_dlg.tcl
>+++ b/lib/tools_dlg.tcl
>@@ -19,7 +19,7 @@ constructor dialog {} {
> global repo_config use_ttk NS
>
> make_dialog top w
>- wm title $top [append "[appname] ([reponame]): " [mc "Add Tool"]]
>+ wm title $top [mc "%s (%s): Add Tool" [appname] [reponame]]
> if {$top ne {.}} {
> wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
> wm transient $top .
>@@ -184,7 +184,7 @@ constructor dialog {} {
> load_config 1
>
> make_dialog top w
>- wm title $top [append "[appname] ([reponame]): " [mc "Remove Tool"]]
>+ wm title $top [mc "%s (%s): Remove Tool" [appname] [reponame]]
> if {$top ne {.}} {
> wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
> wm transient $top .
>@@ -280,7 +280,7 @@ constructor dialog {fullname} {
> }
>
> make_dialog top w -autodelete 0
>- wm title $top [append "[appname] ([reponame]): " $title]
>+ wm title $top "[mc "%s (%s):" [appname] [reponame]] $title"
> if {$top ne {.}} {
> wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
> wm transient $top .
>diff --git a/lib/transport.tcl b/lib/transport.tcl
>index e5d211e..a1a424a 100644
>--- a/lib/transport.tcl
>+++ b/lib/transport.tcl
>@@ -226,7 +226,7 @@ proc do_push_anywhere {} {
> bind $w "grab $w; focus $w.buttons.create"
> bind $w "destroy $w"
> bind $w [list start_push_anywhere_action $w]
>- wm title $w [append "[appname] ([reponame]): " [mc "Push"]]
>+ wm title $w [mc "%s (%s): Push" [appname] [reponame]]
> wm deiconify $w
> tkwait window $w
> }
Well spotted!
--
Pat Thoytshttp://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
) 1
> }
>
> proc show_unmerged_diff {cont_info} {
These both look good. Applied with minor changes to the commit message
for patch 1.
Thank you,
--
Pat Thoytshttp://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
u.
>
>That is, if that ever happens--is git-gui pretty much in deep
>maintenance mode without anything more to do from your point of
>view?
>
>Thanks.
>
I'm just starting to catch up once again. hopefully I can be
a bit more reactive than recently. Merging 52285c83 look
e
to work with older versions of git as well. So adding a guard using the
git-version procedure should maintain that backwards compatibility.
I suggest:
>From c2716458f05893ca88c05ce211a295a330e74590 Mon Sep 17 00:00:00 2001
From: René Scharfe
Date: Sat, 24 Sep 2016 13:30:22 +0200
Subject: [PA
ghted because it is pretty much the only way to implement
>said functionality?
>
>Still, Pat, if you find the time, could you please simply relicense your
>patch (I know that you are fine with it, but we need an explicit
>statement)?
>
>Ciao,
>Johannes
A bit late to the party but
ate: 2015-10-12 11:36+\n"
>+"Last-Translator: Dimitriy Ryazantcev \n"
>+"Language-Team: Russian
>(http://www.transifex.com/djm00n/git-po-ru/language/ru/)\n"
> "MIME-Version: 1.0\n"
> "Content-Type: text/plain; charset=UTF-8\n"
> &qu
Lehmann (2):
git-gui: show staged submodules regardless of ignore config
git-gui: tolerate major version changes when comparing the git version
Kyle J. McKay (1):
git-gui: reinstate support for Tcl 8.4
Michael Lutz (1):
git-gui: add configurable tab size to the diff view
Pat
les
> Makes chooser set 'gitdir' to the resolved path
>
> lib/choose_repository.tcl | 21 ++---
> 1 file changed, 18 insertions(+), 3 deletions(-)
Thanks. I've applied these onto git-gui's upstream repository with minor
changes to the commit
else {
>> @@ -1539,7 +1539,7 @@ proc rescan_stage2 {fd after} {
>> close $fd
>> }
>>
>> -if {[package vsatisfies $::_git_version 1.6.3-]} {
>> +if {[package vcompare $::_git_version 1.6.3] >= 0} {
>> set ls_others [li
> display_all_files_helper $ui_index $path \
>@@ -1993,6 +1995,7 @@ proc display_all_files {} {
> if {$s ne {_}} {
> display_all_files_helper $ui_workdir $path \
> $icon_name $s
>
an alternate location.
>Convenient!
>
>> git-gui directory in my tree comes from its upstream repository
>> git://repo.or.cz/git-gui.git/, and it is maintained by Pat Thoyts
>> (Cc'ed).
>
>> Note that these two upstream projects do not have leading
>
approximately %i
> loose objects.
Applying this to git-gui I get an error raised
can't read "repo_config(gc.auto)": no such element in array
which occurs because I've never set this config variable and it is not
present in the default_config array which is used to initialize repo_
ot;Error creating temporary directory %s:"
> $gitktmpdir] $err"
> unset gitktmpdir
This is a problem on Windows where we will not have mktemp. In Tcl 8.6
the file command acquired a "file tempfile" command to help with this
kind of issue (https://www.tcl.tk/ma
when the underlying git version supports that
>option.
>
>Signed-off-by: Jens Lehmann
>Signed-off-by: Junio C Hamano
>---
>
> * Pat, I've been carrying this in my 'pu' but I would prefer
> changes to git-gui fed to me through you. Could you
n using an unlimited check by appending a - (minus
sign) to the version to yield an open ended range. Or by giving another
range. So the only change required is to append a minus.
package vsatisfies $::_git_version 1.7.0-
will suffice.
package vsatisfies $::_git_version 1.7.0 2.0.0
would work bu
gt;>
>> $ git --version
>> git version 2.0.0.rc0
>>
>> $ cat .git
>> gitdir: ../.git/modules/
>>
>> $ git rev-parse --git-dir
>> /home/chris/src//.git/modules/
>>
>> $ git config core.worktree
>> ../../../
>>
&g
On 23 January 2014 14:16, Johannes Sixt wrote:
> Am 1/23/2014 13:02, schrieb Pat Thoyts:
>> On 23 January 2014 07:28, Johannes Sixt wrote:
>>> @@ -1773,7 +1773,7 @@ $(SCRIPT_LIB) : % : %.sh GIT-SCRIPT-DEFINES
>>>
>>> git.res: git.rc GIT-VERS
file. Given
that the majority of versions has the same first two digits this
becomes fairly useless without the patchlevel digit. So it would be
preferable to try to maintain all three digits. The following should
do this:
GIT_VERSION=1.9.rc0
all:
echo $(join -DMAJOR= -DMINOR= -DPATCH=, \
more terms to glossary
99337ef git-gui i18n: Initial glossary in Bulgarian
--
Pat Thoytshttp://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a
his patch in, if you like it. I've
>never contributed here before, so please me know about any procedures I have
>missed.
>
>Regards, Mads Dørup
Looks like it makes a big difference from those pictures. Patch
applied. Thank you.
--
Pat Thoytshttp://www.
ommarea -weight 0
>+} else {
>+ .vpane.lower paneconfigure .vpane.lower.diff -stretch always
>+ .vpane.lower paneconfigure .vpane.lower.commarea -stretch never
>+}
>
> # -- Commit Area Buttons
> #
Also fine and applied. Thank you.
--
Pat Thoyts
tracked {mc "Staging of untracked files"} {list
> "yes" "no" "ask"}}
>+ {b gui.displayuntracked {mc "Show untracked files"}}
> } {
> set type [lindex $option 0]
> set name [lindex $opti
On 14 June 2013 18:54, Junio C Hamano wrote:
> Stefan Haller writes:
>
>> 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 thi
French translation:Â copy -> copie.
Heiko Voigt (1):
git-gui: allow "\ No newline at end of file" for linewise staging
John Keeping (1):
git-gui: fix file name handling with non-empty prefix
Kirill Smelkov (1):
git-gui: Fix parsing of
Pat Thoyts (4):
git-
and merging upstream should
simplify future maintenance.
Johannes Schindelin (2):
Define NO_GETTEXT for Git for Windows
Windows resource: handle dashes in the Git version gracefully
Pat Thoyts (3):
Provide a Windows
On 6 June 2013 09:17, Stefan Haller wrote:
> 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
On 30 May 2013 16:15, Johannes Schindelin wrote:
> Hi Karsten,
>
> On Thu, 30 May 2013, Karsten Blees wrote:
>
>> Am 25.05.2013 21:16, schrieb Pat Thoyts:
>> > On that note -- with this merge as it now stands I get the following
>> > test
ion on Stackoverflow [1].
>>
>> Please let me know if you need more information or if I should send
>> this problem to some other mailing list.
>> Thank you, Tobias
>>
>>
>> [1]
>> http://stackoverflow.com/questions/13223868/how-to-stage-line-by-line-i
On 25 November 2012 03:15, Nguyen Thai Ngoc Duy wrote:
> CCing msysgit. I vaguely remember they had problems with building
> Python on Windows. I don't know if it's still an issue.
>
> On Sun, Nov 25, 2012 at 9:44 AM, Eric S. Raymond wrote:
>> git presently contains one Python extension command,
On 10 November 2012 21:13, Jean-Jacques Lafay
wrote:
> Le samedi 10 novembre 2012 21:00:10 UTC+1, Philip Oakley a écrit :
>>
>> From: "Jean-Jacques Lafay" Sent: Saturday,
>> November 10, 2012 5:36 PM
>> > In large repos, the recursion implementation of contains(commit,
>> > commit_list)
>> > may
Heiko Voigt (1):
git-gui: open console when using --trace on windows
Marcus Karlsson (1):
git-gui: Use PWD if it exists on Mac OS X
Pat Thoyts (3):
git-gui: preserve commit messages in utf-8
Merge branch 'rt/trans'
git-gui 0.17
Ralf Thielow (3):
of "git commit-tree" in the
>implementation of this Tcl procedure instead.
>
>Pat?
>
I agree - this looks like the code in contrib/examples/git-commit.sh so
presumably predates the builtin 'commit' command.
For now I've applied the above - but this should be chan
changes and it can be difficult\
>> to retrieve them later from the reflog. You should probably cancel this\
>> commit and create a new branch to continue.\n\
>> \n\
>
>Looks obviously correct; Pat?
>
Yes. Applied.
--
Pat Thoytshttp://www
1B-Key-u> do_unstage_selection
>+bind . <$M1B-Key-U> do_unstage_selection
> bind . <$M1B-Key-j> do_revert_selection
> bind . <$M1B-Key-J> do_revert_selection
> bind . <$M1B-Key-i> do_add_all
Looks good to me. Applied.
Thank you.
--
Pat Thoyts
39 matches
Mail list logo