* Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
@ 2025-07-01 15:49 Aditya Garg
2025-07-01 16:41 ` Johannes Schindelin
2025-07-01 16:59 ` brian m. carlson
0 siblings, 2 replies; 7+ messages in thread
From: Aditya Garg @ 2025-07-01 15:49 UTC (permalink / raw)
To: Johannes Schindelin, git@vger.kernel.org
Hi
I am having this issue with Git for Windows that in case I configure a credential helper by following the git
credentials documentation (https://git-scm.com/docs/gitcredentials), the Git Credential Manager still pops up.
I simply close the pop up window, and then it seems to be getting the password from my credential manager.
I removed it using git config --edit --system, but after every update, it pops out again.
I wonder if some proper fix is there for this.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
2025-07-01 15:49 Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig Aditya Garg
@ 2025-07-01 16:41 ` Johannes Schindelin
2025-07-01 16:58 ` Aditya Garg
2025-07-01 16:59 ` brian m. carlson
1 sibling, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2025-07-01 16:41 UTC (permalink / raw)
To: Aditya Garg; +Cc: git@vger.kernel.org
Hi Aditya,
On Tue, 1 Jul 2025, Aditya Garg wrote:
> I am having this issue with Git for Windows that in case I configure a credential helper by following the git
> credentials documentation (https://git-scm.com/docs/gitcredentials), the Git Credential Manager still pops up.
> I simply close the pop up window, and then it seems to be getting the password from my credential manager.
>
> I removed it using git config --edit --system, but after every update, it pops out again.
As per
https://git-scm.com/docs/gitcredentials#Documentation/gitcredentials.txt-helper:
If there are multiple instances of the `credential.helper` configuration
variable, each helper will be tried in turn, and may provide a username,
password, or nothing. Once Git has acquired both a username and a
non-expired password, no more helpers will be tried.
> I wonder if some proper fix is there for this.
Yes, from the same page:
If `credential.helper` is configured to the empty string, this resets the
helper list to empty (so you may override a helper set by a lower-priority
config file by configuring the empty-string helper, followed by whatever
set of helpers you would like).
So the trick is to call `git config set --global --add credential.helper ''`
followed by `git config set --global --add credential.helper $HELPER`.
Ciao,
Johannes
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
2025-07-01 16:41 ` Johannes Schindelin
@ 2025-07-01 16:58 ` Aditya Garg
2025-07-01 17:03 ` Johannes Schindelin
0 siblings, 1 reply; 7+ messages in thread
From: Aditya Garg @ 2025-07-01 16:58 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git@vger.kernel.org
On 01-07-2025 10:11 pm, Johannes Schindelin wrote:
> Hi Aditya,
>
> On Tue, 1 Jul 2025, Aditya Garg wrote:
>
>> I am having this issue with Git for Windows that in case I configure a credential helper by following the git
>> credentials documentation (https://git-scm.com/docs/gitcredentials), the Git Credential Manager still pops up.
>> I simply close the pop up window, and then it seems to be getting the password from my credential manager.
>>
>> I removed it using git config --edit --system, but after every update, it pops out again.
>
> As per
> https://git-scm.com/docs/gitcredentials#Documentation/gitcredentials.txt-helper:
>
> If there are multiple instances of the `credential.helper` configuration
> variable, each helper will be tried in turn, and may provide a username,
> password, or nothing. Once Git has acquired both a username and a
> non-expired password, no more helpers will be tried.
>
>> I wonder if some proper fix is there for this.
>
> Yes, from the same page:
>
> If `credential.helper` is configured to the empty string, this resets the
> helper list to empty (so you may override a helper set by a lower-priority
> config file by configuring the empty-string helper, followed by whatever
> set of helpers you would like).
>
> So the trick is to call `git config set --global --add credential.helper ''`
I wonder if this is a bug in git for windows?
PS C:\Users\Aditya\git> git config set --global --add credential.helper ''
error: unknown option `add'
usage: git config set [<file-option>] [--type=<type>] [--comment=<message>] [--all] [--value=<value>] [--fixed-value] <name> <value>
Config file location
--[no-]global use global config file
--[no-]system use system config file
--[no-]local use repository config file
--[no-]worktree use per-worktree config file
-f, --[no-]file <file>
use given config file
--[no-]blob <blob-id> read config from given blob object
Type
-t, --[no-]type <type>
value is given this type
--bool value is "true" or "false"
--int value is decimal number
--bool-or-int value is --bool or --int
--bool-or-str value is --bool or string
--path value is a path (file or directory name)
--expiry-date value is an expiry date
Filter
--[no-]all replace multi-valued config option with new value
--[no-]value <pattern>
show config with values matching the pattern
--[no-]fixed-value use string equality when comparing values to value pattern
Other
--[no-]comment <value>
human-readable comment string (# will be prepended as needed)
--[no-]append add a new line without altering any existing values
Or you meant by --append as per https://git-scm.com/docs/git-config
I anyways manually added `helper = ` line and now it works well! Thanks a lot.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
2025-07-01 15:49 Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig Aditya Garg
2025-07-01 16:41 ` Johannes Schindelin
@ 2025-07-01 16:59 ` brian m. carlson
2025-07-01 17:02 ` Aditya Garg
1 sibling, 1 reply; 7+ messages in thread
From: brian m. carlson @ 2025-07-01 16:59 UTC (permalink / raw)
To: Aditya Garg; +Cc: Johannes Schindelin, git@vger.kernel.org
[-- Attachment #1: Type: text/plain, Size: 1633 bytes --]
On 2025-07-01 at 15:49:10, Aditya Garg wrote:
> Hi
Hi,
> I am having this issue with Git for Windows that in case I configure a credential helper by following the git
> credentials documentation (https://git-scm.com/docs/gitcredentials), the Git Credential Manager still pops up.
> I simply close the pop up window, and then it seems to be getting the password from my credential manager.
I think this is because Git allows multiple credential helpers. It's
likely that, as you mentioned below, the Git Credential Manager is
actually in the system file and the one you've specified is just
interpreted as an additional helper.
> I removed it using git config --edit --system, but after every update, it pops out again.
Is it the case that it gets re-added to this file on upgrade? That
would explain why it keeps showing up.
> I wonder if some proper fix is there for this.
Ideally, you'd configure Git for Windows not to add this helper. I
think there's a configuration option when you install it.
If you can't or don't want to reinstall Git for Windows to reconfigure
it, you could try setting the `credential.helper` option to an empty
string and then configuring the helper you want. For instance, it might
look like this (not valid for Windows, just an example):
[credential]
helper =
helper = libsecret
The empty string resets the list to remove any existing helpers and then
you can append whatever values you want (in my case, libsecret, but
again, that almost certainly does not work on Windows).
--
brian m. carlson (they/them)
Toronto, Ontario, CA
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 262 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
2025-07-01 16:59 ` brian m. carlson
@ 2025-07-01 17:02 ` Aditya Garg
0 siblings, 0 replies; 7+ messages in thread
From: Aditya Garg @ 2025-07-01 17:02 UTC (permalink / raw)
To: brian m. carlson, Johannes Schindelin, git@vger.kernel.org
> If you can't or don't want to reinstall Git for Windows to reconfigure
> it, you could try setting the `credential.helper` option to an empty
> string and then configuring the helper you want. For instance, it might
> look like this (not valid for Windows, just an example):
>
> [credential]
> helper =
> helper = libsecret
>
That's exactly what I did, and it fixed my issue. Thanks!
> The empty string resets the list to remove any existing helpers and then
> you can append whatever values you want (in my case, libsecret, but
> again, that almost certainly does not work on Windows).
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
2025-07-01 16:58 ` Aditya Garg
@ 2025-07-01 17:03 ` Johannes Schindelin
2025-07-01 17:04 ` Aditya Garg
0 siblings, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2025-07-01 17:03 UTC (permalink / raw)
To: Aditya Garg; +Cc: git@vger.kernel.org
Hi Aditya,
On Tue, 1 Jul 2025, Aditya Garg wrote:
> On 01-07-2025 10:11 pm, Johannes Schindelin wrote:
>
> > So the trick is to call `git config set --global --add
> > credential.helper ''`
>
> I wonder if this is a bug in git for windows?
No, the actual trick is for me to read the manual page myself ;-) The
option is called `--append`:
https://git-scm.com/docs/git-config#Documentation/git-config.txt---append
Ciao,
Johannes
>
> PS C:\Users\Aditya\git> git config set --global --add credential.helper ''
> error: unknown option `add'
> usage: git config set [<file-option>] [--type=<type>] [--comment=<message>] [--all] [--value=<value>] [--fixed-value] <name> <value>
>
> Config file location
> --[no-]global use global config file
> --[no-]system use system config file
> --[no-]local use repository config file
> --[no-]worktree use per-worktree config file
> -f, --[no-]file <file>
> use given config file
> --[no-]blob <blob-id> read config from given blob object
>
> Type
> -t, --[no-]type <type>
> value is given this type
> --bool value is "true" or "false"
> --int value is decimal number
> --bool-or-int value is --bool or --int
> --bool-or-str value is --bool or string
> --path value is a path (file or directory name)
> --expiry-date value is an expiry date
>
> Filter
> --[no-]all replace multi-valued config option with new value
> --[no-]value <pattern>
> show config with values matching the pattern
> --[no-]fixed-value use string equality when comparing values to value pattern
>
> Other
> --[no-]comment <value>
> human-readable comment string (# will be prepended as needed)
> --[no-]append add a new line without altering any existing values
>
>
> Or you meant by --append as per https://git-scm.com/docs/git-config
>
> I anyways manually added `helper = ` line and now it works well! Thanks a lot.
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig
2025-07-01 17:03 ` Johannes Schindelin
@ 2025-07-01 17:04 ` Aditya Garg
0 siblings, 0 replies; 7+ messages in thread
From: Aditya Garg @ 2025-07-01 17:04 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git@vger.kernel.org
On 01-07-2025 10:33 pm, Johannes Schindelin wrote:
> Hi Aditya,
>
> On Tue, 1 Jul 2025, Aditya Garg wrote:
>
>> On 01-07-2025 10:11 pm, Johannes Schindelin wrote:
>>
>>> So the trick is to call `git config set --global --add
>>> credential.helper ''`
>>
>> I wonder if this is a bug in git for windows?
>
> No, the actual trick is for me to read the manual page myself ;-) The
> option is called `--append`:
> https://git-scm.com/docs/git-config#Documentation/git-config.txt---append
>
> Ciao,
> Johannes
>
>>
>> PS C:\Users\Aditya\git> git config set --global --add credential.helper ''
>> error: unknown option `add'
>> usage: git config set [<file-option>] [--type=<type>] [--comment=<message>] [--all] [--value=<value>] [--fixed-value] <name> <value>
>>
>> Config file location
>> --[no-]global use global config file
>> --[no-]system use system config file
>> --[no-]local use repository config file
>> --[no-]worktree use per-worktree config file
>> -f, --[no-]file <file>
>> use given config file
>> --[no-]blob <blob-id> read config from given blob object
>>
>> Type
>> -t, --[no-]type <type>
>> value is given this type
>> --bool value is "true" or "false"
>> --int value is decimal number
>> --bool-or-int value is --bool or --int
>> --bool-or-str value is --bool or string
>> --path value is a path (file or directory name)
>> --expiry-date value is an expiry date
>>
>> Filter
>> --[no-]all replace multi-valued config option with new value
>> --[no-]value <pattern>
>> show config with values matching the pattern
>> --[no-]fixed-value use string equality when comparing values to value pattern
>>
>> Other
>> --[no-]comment <value>
>> human-readable comment string (# will be prepended as needed)
>> --[no-]append add a new line without altering any existing values
>>
>>
>> Or you meant by --append as per https://git-scm.com/docs/git-config
I thought so
>>
>> I anyways manually added `helper = ` line and now it works well! Thanks a lot.
>>
>>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-01 17:04 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-01 15:49 Why git on windows pops up Git Credential Manager inspite of having set a credential helper in .gitconfig Aditya Garg
2025-07-01 16:41 ` Johannes Schindelin
2025-07-01 16:58 ` Aditya Garg
2025-07-01 17:03 ` Johannes Schindelin
2025-07-01 17:04 ` Aditya Garg
2025-07-01 16:59 ` brian m. carlson
2025-07-01 17:02 ` Aditya Garg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox