git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
@ 2008-02-14 12:29 Johannes Schindelin
  2008-02-15  9:40 ` Peter Karlsson
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2008-02-14 12:29 UTC (permalink / raw)
  To: git, gitster, sector3


When deciding if gitk or git-log should be used to visualize the current
state, the environment variable DISPLAY was checked.  Now, we check
MSYSTEM (for MinGW32/MSys) and SECURITYSESSIONID (for MacOSX) in addition.

Note that there is currently no way to ssh into MinGW32, and that
SECURITYSESSIONID is not set automatically on MacOSX when ssh'ing into it.  
So this patch should be safe.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---

	Technically, we do not even support MinGW32 yet in git.git,
	but does it really hurt?  After all, you can call cygwin's git
	from MinGW32 as well...

 git-bisect.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/git-bisect.sh b/git-bisect.sh
index 6594a62..74715ed 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh
@@ -331,9 +331,9 @@ bisect_visualize() {
 
 	if test $# = 0
 	then
-		case "${DISPLAY+set}" in
+		case "${DISPLAY+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" in
 		'')	set git log ;;
-		set)	set gitk ;;
+		set*)	set gitk ;;
 		esac
 	else
 		case "$1" in
-- 
1.5.4.1.1353.g0d5dd

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
  2008-02-14 12:29 [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11 Johannes Schindelin
@ 2008-02-15  9:40 ` Peter Karlsson
  2008-02-15 10:51   ` Johannes Schindelin
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Karlsson @ 2008-02-15  9:40 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

Johannes Schindelin:

> When deciding if gitk or git-log should be used to visualize the current
> state, the environment variable DISPLAY was checked.  Now, we check
> MSYSTEM (for MinGW32/MSys) and SECURITYSESSIONID (for MacOSX) in addition.

That was quick! I haven't tried it, but I guess it should solve the
problem I was seeing.

-- 
\\// Peter - http://www.softwolves.pp.se/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
  2008-02-15  9:40 ` Peter Karlsson
@ 2008-02-15 10:51   ` Johannes Schindelin
  2008-02-15 12:46     ` Peter Karlsson
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2008-02-15 10:51 UTC (permalink / raw)
  To: Peter Karlsson; +Cc: git

Hi,

On Fri, 15 Feb 2008, Peter Karlsson wrote:

> Johannes Schindelin:
> 
> > When deciding if gitk or git-log should be used to visualize the 
> > current state, the environment variable DISPLAY was checked.  Now, we 
> > check MSYSTEM (for MinGW32/MSys) and SECURITYSESSIONID (for MacOSX) in 
> > addition.
> 
> That was quick! I haven't tried it, but I guess it should solve the 
> problem I was seeing.

Can you please test?  The we could at least add a "Tested-by:" to the 
commit message.

Thanks,
Dscho

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
  2008-02-15 10:51   ` Johannes Schindelin
@ 2008-02-15 12:46     ` Peter Karlsson
  2008-02-15 12:50       ` Johannes Schindelin
  2008-03-10 18:20       ` Johannes Schindelin
  0 siblings, 2 replies; 7+ messages in thread
From: Peter Karlsson @ 2008-02-15 12:46 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

Johannes Schindelin:

> Can you please test?  The we could at least add a "Tested-by:" to the 
> commit message.

When starting from the "Git bash" shell, it works.

When starting from a Cygwin prompt, it does not work ($MSYSTEM is not
set).

-- 
\\// Peter - http://www.softwolves.pp.se/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
  2008-02-15 12:46     ` Peter Karlsson
@ 2008-02-15 12:50       ` Johannes Schindelin
  2008-03-10 18:20       ` Johannes Schindelin
  1 sibling, 0 replies; 7+ messages in thread
From: Johannes Schindelin @ 2008-02-15 12:50 UTC (permalink / raw)
  To: Peter Karlsson; +Cc: git

Hi,

On Fri, 15 Feb 2008, Peter Karlsson wrote:

> Johannes Schindelin:
> 
> > Can you please test?  The we could at least add a "Tested-by:" to the 
> > commit message.
> 
> When starting from the "Git bash" shell, it works.

Great.

> When starting from a Cygwin prompt, it does not work ($MSYSTEM is not 
> set).

That is expected.  You _can_ ssh into Cygwin, so we need a way to tell if 
this is a desktop session or a terminal session.  If you have ideas how to 
tell that, please tell me.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
  2008-02-15 12:46     ` Peter Karlsson
  2008-02-15 12:50       ` Johannes Schindelin
@ 2008-03-10 18:20       ` Johannes Schindelin
  2008-03-13 19:19         ` Peter Karlsson
  1 sibling, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2008-03-10 18:20 UTC (permalink / raw)
  To: Peter Karlsson; +Cc: git

Hi,

On Fri, 15 Feb 2008, Peter Karlsson wrote:

> Johannes Schindelin:
> 
> > Can you please test?  The we could at least add a "Tested-by:" to the 
> > commit message.
> 
> When starting from the "Git bash" shell, it works.
> 
> When starting from a Cygwin prompt, it does not work ($MSYSTEM is not 
> set).

Can you please test this patch (both from interactive and ssh'ed 
sessions)?

-- snipsnap --
[PATCH] bisect view: call gitk if Cygwin's SESSIONNAME variable is set

It seems that Cygwin sets the variable SESSIONNAME when an interactive
session is running, and does not set it when you log in via ssh.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
 git-bisect.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-bisect.sh b/git-bisect.sh
index 2c32d0b..af8f9e3 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh
@@ -333,7 +333,7 @@ bisect_visualize() {
 
 	if test $# = 0
 	then
-		case "${DISPLAY+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" in
+		case "${DISPLAY+set}${SESSIONNAME+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" in
 		'')	set git log ;;
 		set*)	set gitk ;;
 		esac
-- 
1.5.4.4.643.g7cb9b.dirty

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11
  2008-03-10 18:20       ` Johannes Schindelin
@ 2008-03-13 19:19         ` Peter Karlsson
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Karlsson @ 2008-03-13 19:19 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

Johannes Schindelin:

> Can you please test this patch (both from interactive and ssh'ed
> sessions)?

It does indeed seem to work. I get gitk when running from a local Cygwin 
shell and from a local cmd.exe shell, and git log when logging in over ssh.

Thank you.

-- 
\\// Peter - http://www.softwolves.pp.se/

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-03-13 20:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-14 12:29 [PATCH] bisect view: check for MinGW32 and MacOSX in addition to X11 Johannes Schindelin
2008-02-15  9:40 ` Peter Karlsson
2008-02-15 10:51   ` Johannes Schindelin
2008-02-15 12:46     ` Peter Karlsson
2008-02-15 12:50       ` Johannes Schindelin
2008-03-10 18:20       ` Johannes Schindelin
2008-03-13 19:19         ` Peter Karlsson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).