git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Submodule init uses STDERR output
@ 2020-05-23 22:44 Michal Vrana
  2020-05-23 23:23 ` brian m. carlson
  0 siblings, 1 reply; 2+ messages in thread
From: Michal Vrana @ 2020-05-23 22:44 UTC (permalink / raw)
  To: git

Hello,
I've come across an issue that seems like a bug to me. If I clone a
repository with a submodule but want to initialize it separately, then
the error output is used during this initialization for what seems to
be a standard message.
Motivation:
Cannot use - Fail on standard error setting in a devops pipeline

Steps to reproduce:
1. git clone
2. git submodule init 2>err.txt

The err.txt contains a message like
Submodule 'xyz' (xyz.git) registered for path 'abc'
From what I've read this is the standard output in this case. And if
not then why when I use "quiet" mode then the error output is empty.
So why is the error output even used?

Platforms reproduced on:
git version 2.26.2.windows.1 - Windows server
git version 2.19.0.windows.1 - gitbash - Windows 10
git version 2.17.1 Ubuntu (Windows subsystem)

Thanks,
Michal Vrana

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

* Re: Submodule init uses STDERR output
  2020-05-23 22:44 Submodule init uses STDERR output Michal Vrana
@ 2020-05-23 23:23 ` brian m. carlson
  0 siblings, 0 replies; 2+ messages in thread
From: brian m. carlson @ 2020-05-23 23:23 UTC (permalink / raw)
  To: Michal Vrana; +Cc: git

[-- Attachment #1: Type: text/plain, Size: 1815 bytes --]

On 2020-05-23 at 22:44:59, Michal Vrana wrote:
> Hello,
> I've come across an issue that seems like a bug to me. If I clone a
> repository with a submodule but want to initialize it separately, then
> the error output is used during this initialization for what seems to
> be a standard message.
> Motivation:
> Cannot use - Fail on standard error setting in a devops pipeline

In general, this is not a good setting to use with Git.  Git uses
standard error for many progress outputs if standard output is
potentially scriptable.  You're better off checking exit codes to
determine success or failure.

Git is also not the only tool to do this; other tools such as Docker do
as well.

> Steps to reproduce:
> 1. git clone
> 2. git submodule init 2>err.txt
> 
> The err.txt contains a message like
> Submodule 'xyz' (xyz.git) registered for path 'abc'
> From what I've read this is the standard output in this case. And if
> not then why when I use "quiet" mode then the error output is empty.
> So why is the error output even used?

c66410ed32a gives us the answer:

  Reroute the output of stdout to stderr as it is just informative
  messages, not to be consumed by machines.

  This should not regress any scripts that try to parse the
  current output, as the output is already internationalized
  and therefore unstable.

  We want to init submodules from the helper for `submodule update`
  in a later patch and the stdout output of said helper is consumed
  by the parts of `submodule update` which are still written in shell.
  So we have to be careful which messages are on stdout.

I haven't looked to see if we could change it back, but that's the
reason it was written that way.
-- 
brian m. carlson: Houston, Texas, US
OpenPGP: https://keybase.io/bk2204

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

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

end of thread, other threads:[~2020-05-23 23:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-23 22:44 Submodule init uses STDERR output Michal Vrana
2020-05-23 23:23 ` brian m. carlson

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).