Re: [PATCH] completion: complete remote names too

2018-06-04 Thread Łukasz Stelmach
It was <2018-05-30 śro 17:37>, when Duy Nguyen wrote: > On Fri, May 25, 2018 at 12:48:42PM +0200, Łukasz Stelmach wrote: >> "git remote update" accepts both groups and single remotes. >> >> Signed-off-by: Łukasz Stelmach >> --- >> contrib/complet

[PATCH] git-gui: Prevent double UTF-8 conversion

2017-11-28 Thread Łukasz Stelmach
it cat-file) becomes "\303\205\302\201ukasz". Signed-off-by: Łukasz Stelmach --- git-gui/lib/commit.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) So, this is the second attempt to draw some attention to this patch, since the first one has somewhat failed. https://marc.inf

Re: [PATCH] git-gui: Prevent double UTF-8 conversion

2017-12-02 Thread Łukasz Stelmach
On Tue, 28 Nov 2017 15:35:21 +0100, Johannes Schindelin wrote: > On Tue, 28 Nov 2017, Łukasz Stelmach wrote: > > With encoding on the file descriptor set to "binary" Tcl (8.6 in my > > case) does double conversion which breaks e.g. author name in amended > >

[PATCH v2] git-gui: Prevent double UTF-8 conversion

2017-12-02 Thread Łukasz Stelmach
303\205\302\201ukasz" in an amended commit. Signed-off-by: Łukasz Stelmach --- git-gui/lib/commit.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git-gui/lib/commit.tcl b/git-gui/lib/commit.tcl index 83620b7cb..f820c24bf 100644 --- a/git-gui/lib/commit.tcl +++

[PATCH v3] git-gui: Prevent double UTF-8 conversion

2017-12-05 Thread Łukasz Stelmach
) becomes "\303\205\302\201ukasz" in an amended commit. Signed-off-by: Łukasz Stelmach --- git-gui/lib/commit.tcl | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/git-gui/lib/commit.tcl b/git-gui/lib/commit.tcl index 83620b7cb..75ea965da 100644 --- a/git

[PATCH v4] git-gui: Prevent double UTF-8 conversion

2017-12-14 Thread Łukasz Stelmach
) becomes "\303\205\302\201ukasz" in an amended commit. Signed-off-by: Łukasz Stelmach Reviewed-by: Johannes Schindelin --- Changes since v3: - Added Reviewed-by footer. Thank you Johannes Schindelin, for review. git-gui/lib/commit.tcl | 12 +--- 1 file changed, 9 insertions

Re: [PATCH v4] git-gui: Prevent double UTF-8 conversion

2017-12-14 Thread Łukasz Stelmach
It was <2017-12-14 czw 10:42>, when Eric Sunshine wrote: > On Thu, Dec 14, 2017 at 4:32 AM, Łukasz Stelmach > wrote: >> Convert author's name and e-mail address from the UTF-8 (or any other) >> encoding in load_last_commit function the same way commit message is

[PATCH] completion: complete remote names too

2018-05-25 Thread Łukasz Stelmach
"git remote update" accepts both groups and single remotes. Signed-off-by: Łukasz Stelmach --- contrib/completion/git-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.

[PATCH] git-gui: Prevent double UTF-8 conversion

2017-08-21 Thread Łukasz Stelmach
With encoding on the file descriptor set to "binary" Tcl (8.6 in my case) does double conversion which breaks e.g. author name in amended commits. For example "\305\201ukasz" (as written by git cat-file) becomes "\303\205\302\201ukasz". Signed-off-by: Łukasz Stelmac

[PATCH] gitk: add a checkbox to control the visibility of tags

2012-11-30 Thread Łukasz Stelmach
Enable hiding of tags displayed in the tree as yellow labels. If a repository is used together with a system like Gerrit there may be quite a lot of tags used to control building and there may be hardly any place left for commit subjects. Signed-off-by: Łukasz Stelmach --- gitk-git/gitk | 23

[PATCH] gitk: read and write a repository specific configuration file

2012-12-02 Thread Łukasz Stelmach
ll of them in ~/.gitk and make the views list needlesly long. Signed-off-by: Łukasz Stelmach --- gitk-git/gitk | 25 ++--- 1 files changed, 14 insertions(+), 11 deletions(-) diff --git a/gitk-git/gitk b/gitk-git/gitk index d93bd99..60cf4cd 100755 --- a/gitk-git/gitk +++

[PATCH v2] gitk: add a checkbox to control the visibility of tags

2012-12-04 Thread Łukasz Stelmach
Enable hiding of tags displayed in the tree as yellow labels. If a repository is used together with a system like Gerrit there may be quite a lot of tags used to control building and there may be hardly any place left for commit subjects. Signed-off-by: Łukasz Stelmach --- Rebased onto Paul&#

[PATCH v2] gitk: read and write a repository specific configuration file

2012-12-04 Thread Łukasz Stelmach
ll of them in ~/.gitk and make the views list needlesly long. Signed-off-by: Łukasz Stelmach --- Same as before but rebased onto Paul's repository. gitk | 25 ++--- 1 files changed, 14 insertions(+), 11 deletions(-) diff --git a/gitk b/gitk index 379582a..c6b7dc3 10

[PATCH] gitk: read and write a repository specific configuration file

2012-12-08 Thread Łukasz Stelmach
ll of them in ~/.gitk and make the views list needlessly long. Signed-off-by: Łukasz Stelmach --- gitk | 25 ++--- 1 files changed, 14 insertions(+), 11 deletions(-) diff --git a/gitk b/gitk index 379582a..c6b7dc3 100755 --- a/gitk +++ b/gitk @@ -2703,7 +2703,7 @@ proc do

[PATCH] send-email: support NNTP

2013-04-23 Thread Łukasz Stelmach
Enable sending patches to NNTP servers (Usenet, Gmane). --- The patch implements support for sending messages to groups on NNTP serviers. The patch does not (attempts not to) change the default behavior i.e. to use sendmail and/or Net::SMTP. To use NNTP one needs to configure the server (see the

Re: [PATCH] send-email: support NNTP

2013-04-24 Thread Łukasz Stelmach
It was <2013-04-24 śro 09:19>, when Eric Sunshine wrote: > On Tue, Apr 23, 2013 at 7:13 AM, Łukasz Stelmach > wrote: >> Enable sending patches to NNTP servers (Usenet, Gmane). >> --- >> diff --git a/git-send-email.perl b/git-send-email.perl >> index bd13c

Re: [PATCH] send-email: support NNTP

2013-04-24 Thread Łukasz Stelmach
It was <2013-04-23 wto 17:02>, when Junio C Hamano wrote: > Łukasz Stelmach writes: > >> Enable sending patches to NNTP servers (Usenet, Gmane). >> --- >> >> The patch implements support for sending messages to groups on NNTP serviers. > > Cute. >

Re: [PATCH] send-email: support NNTP

2013-04-24 Thread Łukasz Stelmach
It was <2013-04-24 śro 09:38>, when Thomas Rast wrote: > Łukasz Stelmach writes: > >> Enable sending patches to NNTP servers (Usenet, Gmane). > > I'm surprised Junio didn't mention this: your patch lacks the > Signed-off-by. > >> +if ($email

Re: [PATCH] send-email: support NNTP

2013-04-24 Thread Łukasz Stelmach
It was <2013-04-24 śro 18:17>, when Junio C Hamano wrote: > l.stelm...@samsung.com (Łukasz Stelmach) writes: > >> It was <2013-04-23 wto 17:02>, when Junio C Hamano wrote: >>> Łukasz Stelmach writes: >>> >>>> Enable sending patches to NNTP

Re: [PATCH] send-email: support NNTP

2013-04-25 Thread Łukasz Stelmach
It was <2013-04-25 czw 00:41>, when Junio C Hamano wrote: > Thomas Rast writes: > >> Łukasz Stelmach writes: >> >>> Enable sending patches to NNTP servers (Usenet, Gmane). >> >> I'm surprised Junio didn't mention this: your patch lacks the