Skip to content

Commit

Permalink
Use false for git env values
Browse files Browse the repository at this point in the history
Conversation with Johannes Schindelin, maintainer of git for Windows.
  • Loading branch information
MarkEWaite committed Feb 13, 2018
1 parent 14c53b2 commit 3ea5191
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1651,9 +1651,9 @@ private String launchCommandWithCredentials(ArgumentListBuilder args, File workD
EnvVars env = environment;
if (!PROMPT_FOR_AUTHENTICATION && isAtLeastVersion(2, 3, 0, 0)) {
env = new EnvVars(env);
env.put("GIT_TERMINAL_PROMPT", "0"); // Don't prompt for auth from command line git
env.put("GIT_TERMINAL_PROMPT", "false"); // Don't prompt for auth from command line git
if (isWindows()) {
env.put("GCM_INTERACTIVE", "never"); // Don't prompt for auth from git credentials manager for windows
env.put("GCM_INTERACTIVE", "false"); // Don't prompt for auth from git credentials manager for windows
}
}
try {
Expand Down

0 comments on commit 3ea5191

Please sign in to comment.