* [PATCH] git-gui: '/dev/null' on Windows is named 'nul'
@ 2007-03-07 16:26 Johannes Sixt
2007-03-07 16:57 ` Shawn O. Pearce
0 siblings, 1 reply; 2+ messages in thread
From: Johannes Sixt @ 2007-03-07 16:26 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: git
From: Johannes Sixt <johannes.sixt@telecom.at>
Making (or amending) an initial commit on Windows fails because
redirecting something to '/dev/null' must fail - this device does not exist.
Redirect to 'nul' instead.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
---
I've noticed this while using the MinGW port, but I do not know whether
this is needed or even works on Cygwin.
(Now lets see whether my MUA wraps long lines...)
-- Hannes
git-gui/git-gui.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/git-gui/git-gui.sh b/git-gui/git-gui.sh
index f84ba33..971d5fe 100755
--- a/git-gui/git-gui.sh
+++ b/git-gui/git-gui.sh
@@ -1288,7 +1288,11 @@ proc commit_committree {fd_wt curHEAD msg} {
}
} else {
# git commit-tree writes to stderr during initial commit.
- lappend cmd 2>/dev/null
+ if {[is_Windows]} {
+ lappend cmd 2>nul
+ } else {
+ lappend cmd 2>/dev/null
+ }
}
lappend cmd <$msg_p
if {[catch {set cmt_id [eval exec $cmd]} err]} {
--
1.5.0.2.279.g4808
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] git-gui: '/dev/null' on Windows is named 'nul'
2007-03-07 16:26 [PATCH] git-gui: '/dev/null' on Windows is named 'nul' Johannes Sixt
@ 2007-03-07 16:57 ` Shawn O. Pearce
0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2007-03-07 16:57 UTC (permalink / raw)
To: Johannes Sixt; +Cc: git
Johannes Sixt <J.Sixt@eudaptics.com> wrote:
> From: Johannes Sixt <johannes.sixt@telecom.at>
>
> Making (or amending) an initial commit on Windows fails because
> redirecting something to '/dev/null' must fail - this device does not exist.
> Redirect to 'nul' instead.
>
> Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
> ---
> I've noticed this while using the MinGW port, but I do not know whether
> this is needed or even works on Cygwin.
I had previously fixed this in gitgui-0.6.3, which is now also
merged into `maint` in git.git. It was fixed by just removing that
redirection block, in git 1.5.0 and later commit-tree doesn't print
anything on stderr when making an initial commit.
--
Shawn.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-03-07 16:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-07 16:26 [PATCH] git-gui: '/dev/null' on Windows is named 'nul' Johannes Sixt
2007-03-07 16:57 ` Shawn O. Pearce
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.