From: Sebastian Schuberth <hidden> Date: 2016-06-15 23:08:03
From: Sebastian Schuberth <redacted>
git-gui--askpass is not only used for SSH authentication, but also for
HTTPS. In that context it is confusing to have a window title of
"OpenSSH". So generalize the title so that it also says which parent
process, i.e. Git, requires authentication.
Signed-off-by: Sebastian Schuberth <redacted>
---
git-gui/git-gui--askpass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
From: Sebastian Schuberth <hidden> Date: 2016-06-15 23:08:12
On 01.02.2016 13:11, Sebastian Schuberth wrote:
git-gui--askpass is not only used for SSH authentication, but also for
HTTPS. In that context it is confusing to have a window title of
"OpenSSH". So generalize the title so that it also says which parent
process, i.e. Git, requires authentication.
Signed-off-by: Sebastian Schuberth <redacted>
I haven't seen this being picked up so far. Any comments?
--
Sebastian Schuberth
From: Sebastian Schuberth <hidden> Date: 2017-03-07 18:20:06
git-gui--askpass is not only used for SSH authentication, but also for
HTTPS. In that context it is confusing to have a window title of
"OpenSSH". So generalize the title so that it also says which parent
process, i.e. Git, requires authentication.
Signed-off-by: Sebastian Schuberth <redacted>
---
git-gui/git-gui--askpass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
From: Stefan Beller <hidden> Date: 2017-03-07 18:31:08
https://public-inbox.org/git/xmqq60jz2xry.fsf@gitster.mtv.corp.google.com/
Although the following are included in git.git repository, they have their
own authoritative repository and maintainers:
- git-gui/ comes from git-gui project, maintained by Pat Thoyts:
git://repo.or.cz/git-gui.git
I cc'd Pat.
Thanks,
Stefan
From: Sebastian Schuberth <hidden> Date: 2017-04-27 06:38:17
git-gui--askpass is not only used for SSH authentication, but also for
HTTPS. In that context it is confusing to only rfer to "OpenSSH", also
because another SSH client like PuTTY might be in use. So generalize
wording and also say which parent process, i.e. Git, requires
authentication.
Signed-off-by: Sebastian Schuberth <redacted>
---
git-gui/git-gui--askpass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -2,7 +2,7 @@ # Tcl ignores the next line -*- tcl -*- \ exec wish "$0" -- "$@"-# This is a trivial implementation of an SSH_ASKPASS handler.+# This is a trivial implementation of an GIT_ASKPASS / SSH_ASKPASS handler. # Git-gui uses this script if none are already configured. package require Tk
@@ -12,7 +12,7 @@ set yesno 0 set rc 255 if {$argc < 1} {- set prompt "Enter your OpenSSH passphrase:"+ set prompt "Enter your password / passphrase:" } else { set prompt [join $argv " "] if {[regexp -nocase {\(yes\/no\)\?\s*$} $prompt]} {
@@ -60,7 +60,7 @@ proc finish {} { set ::rc 0 }-wm title . "OpenSSH"+wm title . "Git Authentication" tk::PlaceWindow . vwait rc exit $rc--
From: Sebastian Schuberth <hidden> Date: 2017-04-27 09:19:19
+ Pat
On 2017-04-27 08:38, Sebastian Schuberth wrote:
quoted hunk
git-gui--askpass is not only used for SSH authentication, but also for
HTTPS. In that context it is confusing to only rfer to "OpenSSH", also
because another SSH client like PuTTY might be in use. So generalize
wording and also say which parent process, i.e. Git, requires
authentication.
Signed-off-by: Sebastian Schuberth <redacted>
---
git-gui/git-gui--askpass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -2,7 +2,7 @@ # Tcl ignores the next line -*- tcl -*- \ exec wish "$0" -- "$@"-# This is a trivial implementation of an SSH_ASKPASS handler.+# This is a trivial implementation of an GIT_ASKPASS / SSH_ASKPASS handler. # Git-gui uses this script if none are already configured. package require Tk
@@ -12,7 +12,7 @@ set yesno 0 set rc 255 if {$argc < 1} {- set prompt "Enter your OpenSSH passphrase:"+ set prompt "Enter your password / passphrase:" } else { set prompt [join $argv " "] if {[regexp -nocase {\(yes\/no\)\?\s*$} $prompt]} {
@@ -60,7 +60,7 @@ proc finish {} { set ::rc 0 }-wm title . "OpenSSH"+wm title . "Git Authentication" tk::PlaceWindow . vwait rc exit $rc
From: Johannes Schindelin <hidden> Date: 2017-04-27 14:02:38
+ Pat
On Thu, 27 Apr 2017, Sebastian Schuberth wrote:
+ Pat
On 2017-04-27 08:38, Sebastian Schuberth wrote:
quoted
git-gui--askpass is not only used for SSH authentication, but also for
HTTPS. In that context it is confusing to only rfer to "OpenSSH", also
because another SSH client like PuTTY might be in use. So generalize
wording and also say which parent process, i.e. Git, requires
authentication.
Signed-off-by: Sebastian Schuberth <redacted>
---
git-gui/git-gui--askpass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -2,7 +2,7 @@ # Tcl ignores the next line -*- tcl -*- \ exec wish "$0" -- "$@"-# This is a trivial implementation of an SSH_ASKPASS handler.+# This is a trivial implementation of an GIT_ASKPASS / SSH_ASKPASS handler. # Git-gui uses this script if none are already configured. package require Tk
@@ -12,7 +12,7 @@ set yesno 0 set rc 255 if {$argc < 1} {- set prompt "Enter your OpenSSH passphrase:"+ set prompt "Enter your password / passphrase:" } else { set prompt [join $argv " "] if {[regexp -nocase {\(yes\/no\)\?\s*$} $prompt]} {
@@ -60,7 +60,7 @@ proc finish {} { set ::rc 0 }-wm title . "OpenSSH"+wm title . "Git Authentication" tk::PlaceWindow . vwait rc exit $rc