Skip to content

Commit 621de7e

Browse files
sokcevicGLUCI
authored and
LUCI
committed
Disable git terminal prompt during fetch/clone
git fetch operation may prompt user to enter username and password. This won't be visible to user when repo sync operation since stdout and stderr are redirected. If that happens, user may think repo is doing work and likely won't realize it's stuck on user's input. This patch disables prompt for clone and fetch operations, and repo will fail fast. [email protected] Bug: b/368644181 Change-Id: I2efa88ae66067587a00678eda155d861034b9127 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/438001 Reviewed-by: Nasser Grainawi <[email protected]> Tested-by: Josip Sokcevic <[email protected]> Commit-Queue: Josip Sokcevic <[email protected]> Reviewed-by: Gavin Mak <[email protected]>
1 parent d7ebdf5 commit 621de7e

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

git_command.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -313,12 +313,15 @@ def __init__(
313313
cwd = None
314314
command_name = cmdv[0]
315315
command.append(command_name)
316-
# Need to use the --progress flag for fetch/clone so output will be
317-
# displayed as by default git only does progress output if stderr is a
318-
# TTY.
319-
if sys.stderr.isatty() and command_name in ("fetch", "clone"):
320-
if "--progress" not in cmdv and "--quiet" not in cmdv:
321-
command.append("--progress")
316+
317+
if command_name in ("fetch", "clone"):
318+
env["GIT_TERMINAL_PROMPT"] = "0"
319+
# Need to use the --progress flag for fetch/clone so output will be
320+
# displayed as by default git only does progress output if stderr is
321+
# a TTY.
322+
if sys.stderr.isatty():
323+
if "--progress" not in cmdv and "--quiet" not in cmdv:
324+
command.append("--progress")
322325
command.extend(cmdv[1:])
323326

324327
event_log = (

project.py

+13
Original file line numberDiff line numberDiff line change
@@ -2697,6 +2697,19 @@ def _RemoteFetch(
26972697
)
26982698
# Continue right away so we don't sleep as we shouldn't need to.
26992699
continue
2700+
elif (
2701+
ret == 128
2702+
and gitcmd.stdout
2703+
and "fatal: could not read Username" in gitcmd.stdout
2704+
):
2705+
# User needs to be authenticated, and Git wants to prompt for
2706+
# username and password.
2707+
print(
2708+
"git requires authentication, but repo cannot perform "
2709+
"interactive authentication. Check git credentials.",
2710+
file=output_redir,
2711+
)
2712+
break
27002713
elif current_branch_only and is_sha1 and ret == 128:
27012714
# Exit code 128 means "couldn't find the ref you asked for"; if
27022715
# we're in sha1 mode, we just tried sync'ing from the upstream

0 commit comments

Comments
 (0)