Re: How to reset/remove the stored Git password?

2020-12-03 Thread Thomas Kellerer
Peter Hull schrieb am 03.12.2020 um 11:46:
> On Thu, 3 Dec 2020 at 09:49, Peter Hull  > wrote:
>
>
> I can see implementations for Gnome, KWallet and Mac, not sure about 
> Windows. There is a class called FallbackProvider which is maybe used for 
> windows?
>
> Sorry, last one. Specifically on Windows it does use the FallbackProvider and 
> the passwords are stored encrypted in
> %USERPROFILE%\AppData\Roaming\NetBeans\[VERSION]\config\Preferences\org\netbeans\modules\keyring
> where [VERSION] is 12.2 or whatever. 
>

Ah, that's the one I was looking for in the data directory. Thanks

Jiří's tip to re-enter the password worked for now, but it's good to know what 
files to clear out if something like that happens again.

Thomas

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to reset/remove the stored Git password?

2020-12-03 Thread Peter Hull
On Thu, 3 Dec 2020 at 09:49, Peter Hull  wrote:

>
> I can see implementations for Gnome, KWallet and Mac, not sure about
> Windows. There is a class called FallbackProvider which is maybe used for
> windows?
>
Sorry, last one. Specifically on Windows it does use the FallbackProvider
and the passwords are stored encrypted in
%USERPROFILE%\AppData\Roaming\NetBeans\[VERSION]\config\Preferences\org\netbeans\modules\keyring
where [VERSION] is 12.2 or whatever.

>


Re: How to reset/remove the stored Git password?

2020-12-03 Thread Peter Hull
On Thu, 3 Dec 2020 at 09:49, Peter Hull  wrote:

> On Thu, 3 Dec 2020 at 09:25, Thomas Kellerer  wrote:
>
>> It would still be interesting where NetBeans stores that password.
>>
>> Ultimately NetBeans uses the Keyring class which delegates to a
> platform-dependent KeyringProvider.
>
> While it's in my mind (I checked up on this) the important
classes/interfaces are:

* org.eclipse.jgit.transport.CredentialsProvider (need to implement this
and pass an instance to JGit so it can do its work)
* org.netbeans.libs.git.jgit.JGitCredentialsProvider (implements
CredentialsProvider, gets credentials from a GitClientCallback)
* org.netbeans.modules.git.client.CredentialsCallback (gets credentials
from GitModuleConfig, implements GitClientCallback)
* org.netbeans.modules.git.GitModuleConfig (stores/retrieves
ConnectionSettings via KeyringSupport)
* org.netbeans.modules.versioning.util.KeyringSupport (helper class between
GitModuleConfig and Keyring)
* org.netbeans.api.keyring.Keyring (delegates to platform dependent
provider)

Phew!


Re: How to reset/remove the stored Git password?

2020-12-03 Thread Peter Hull
On Thu, 3 Dec 2020 at 09:25, Thomas Kellerer  wrote:

> It would still be interesting where NetBeans stores that password.
>
> Ultimately NetBeans uses the Keyring class which delegates to a
platform-dependent KeyringProvider.
https://github.com/apache/netbeans/blob/abe93502d5010781955ad22102893d03326c72e2/platform/keyring/src/org/netbeans/api/keyring/Keyring.java
https://github.com/apache/netbeans/blob/abe93502d5010781955ad22102893d03326c72e2/platform/keyring/src/org/netbeans/spi/keyring/KeyringProvider.java
I can see implementations for Gnome, KWallet and Mac, not sure about
Windows. There is a class called FallbackProvider which is maybe used for
windows?

You will be able to see the provider if you enable logging for "
org.netbeans.modules.keyring" at the FINE level.
https://github.com/apache/netbeans/blob/abe93502d5010781955ad22102893d03326c72e2/platform/keyring/src/org/netbeans/api/keyring/Keyring.java#L75

Pete


Re: How to reset/remove the stored Git password?

2020-12-03 Thread Thomas Kellerer
Thanks, that did the trick.

It would still be interesting where NetBeans stores that password.

Jiří Svoboda schrieb am 03.12.2020 um 09:16:
> On 12/03/2020 09:11 Malcolm Fitzgerald wrote:
>
> Maybe this will help you:
>
> „Right click your project and go to Git -> Remote -> Push... Select 'Specify 
> Git Repository Location', update your password, click Next. It may give you 
> error again. Close the popup and try pushing again. You should be able to 
> push now.“? [https://stackoverflow.com/a/49698917]
>
> Jiří
>
> Dne 03. 12. 20 v 9:11 Malcolm Fitzgerald napsal(a):
>> Then it's probably not about NetBeans but about the system keychain. Which 
>> OS are you working on?
>>
>>
>> Malcolm
>>
>>
>> On 3/12/20 9:04 pm, Thomas Kellerer wrote:
>>> No, it's not about Git.
>>>
>>> It's about NetBeans (allegedly) storing the password somewhere.
>>>
>>> Lisa Ruby schrieb am 03.12.2020 um 08:10:
 Wish I could help more, but I only use git locally.
 Might be helpful to try the git community.

 https://git-scm.com/community

 And/or the git documentation here:

 https://git-scm.com/doc

 Lisa

 On 12/2/2020 10:45 PM, Thomas Kellerer wrote:
> Hmm.
>
> There is no such directory in the NetBeans user directory.
>
> If you are referring to the the config file in the Git repository itself: 
> it does not contain any passwords (or credentials).
>
> Thomas
>
> Lisa Ruby schrieb am 02.12.2020 um 17:01:
>> Try looking in .git/config
>>
>> Lisa
>>
>> On 12/2/2020 1:28 AM, Thomas Kellerer wrote:
>>> Hello,
>>>
>>> I accidently entered the wrong password for my git remote server and 
>>> chose "Save password".
>>>
>>> How can I delete that stored password? (NetBeans seems to try to use 
>>> the old password, causing my Git account to be locked)
>>>
>>> I could find a "svn" sub-directory in my NetBeans User directory which 
>>> apparently stores this for Subversion, but nothing for git.
>>>
>>> Thanks
>>> Thomas
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>


 -
 To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
 For additional commands, e-mail: users-h...@netbeans.apache.org

 For further information about the NetBeans mailing lists, visit:
 https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
> --
>
> *Jiří Svoboda*
> programátor, technik IT.
>
> logo tHB 
>
> *Tiskárny Havlíčkův Brod, a.s.*
> Husova 1881
> 580 01 Havlíčkův Brod
> Česká republika
>
> Tel.: +420 569 664 150
> E-mail: svob...@thb.cz 
> www: www.thb.cz
>

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to reset/remove the stored Git password?

2020-12-03 Thread Jiří Svoboda

On 12/03/2020 09:11 Malcolm Fitzgerald wrote:

Maybe this will help you:

„Right click your project and go to Git -> Remote -> Push... Select 
'Specify Git Repository Location', update your password, click Next. It 
may give you error again. Close the popup and try pushing again. You 
should be able to push now.“? [https://stackoverflow.com/a/49698917]


Jiří

Dne 03. 12. 20 v 9:11 Malcolm Fitzgerald napsal(a):
Then it's probably not about NetBeans but about the system keychain. 
Which OS are you working on?



Malcolm


On 3/12/20 9:04 pm, Thomas Kellerer wrote:

No, it's not about Git.

It's about NetBeans (allegedly) storing the password somewhere.

Lisa Ruby schrieb am 03.12.2020 um 08:10:

Wish I could help more, but I only use git locally.
Might be helpful to try the git community.

https://git-scm.com/community

And/or the git documentation here:

https://git-scm.com/doc

Lisa

On 12/2/2020 10:45 PM, Thomas Kellerer wrote:

Hmm.

There is no such directory in the NetBeans user directory.

If you are referring to the the config file in the Git repository 
itself: it does not contain any passwords (or credentials).


Thomas

Lisa Ruby schrieb am 02.12.2020 um 17:01:

Try looking in .git/config

Lisa

On 12/2/2020 1:28 AM, Thomas Kellerer wrote:

Hello,

I accidently entered the wrong password for my git remote server 
and chose "Save password".


How can I delete that stored password? (NetBeans seems to try to 
use the old password, causing my Git account to be locked)


I could find a "svn" sub-directory in my NetBeans User directory 
which apparently stores this for Subversion, but nothing for git.


Thanks
Thomas

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


--

*Jiří Svoboda*
programátor, technik IT.

logo tHB 

*Tiskárny Havlíčkův Brod, a.s.*
Husova 1881
580 01 Havlíčkův Brod
Česká republika

Tel.: +420 569 664 150
E-mail: svob...@thb.cz 
www: www.thb.cz



Re: How to reset/remove the stored Git password?

2020-12-03 Thread Malcolm Fitzgerald
Then it's probably not about NetBeans but about the system keychain. 
Which OS are you working on?



Malcolm


On 3/12/20 9:04 pm, Thomas Kellerer wrote:

No, it's not about Git.

It's about NetBeans (allegedly) storing the password somewhere.

Lisa Ruby schrieb am 03.12.2020 um 08:10:

Wish I could help more, but I only use git locally.
Might be helpful to try the git community.

https://git-scm.com/community

And/or the git documentation here:

https://git-scm.com/doc

Lisa

On 12/2/2020 10:45 PM, Thomas Kellerer wrote:

Hmm.

There is no such directory in the NetBeans user directory.

If you are referring to the the config file in the Git repository itself: it 
does not contain any passwords (or credentials).

Thomas

Lisa Ruby schrieb am 02.12.2020 um 17:01:

Try looking in .git/config

Lisa

On 12/2/2020 1:28 AM, Thomas Kellerer wrote:

Hello,

I accidently entered the wrong password for my git remote server and chose "Save 
password".

How can I delete that stored password? (NetBeans seems to try to use the old 
password, causing my Git account to be locked)

I could find a "svn" sub-directory in my NetBeans User directory which 
apparently stores this for Subversion, but nothing for git.

Thanks
Thomas

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to reset/remove the stored Git password?

2020-12-03 Thread Thomas Kellerer
No, it's not about Git.

It's about NetBeans (allegedly) storing the password somewhere.

Lisa Ruby schrieb am 03.12.2020 um 08:10:
> Wish I could help more, but I only use git locally.
> Might be helpful to try the git community.
>
> https://git-scm.com/community
>
> And/or the git documentation here:
>
> https://git-scm.com/doc
>
> Lisa
>
> On 12/2/2020 10:45 PM, Thomas Kellerer wrote:
>> Hmm.
>>
>> There is no such directory in the NetBeans user directory.
>>
>> If you are referring to the the config file in the Git repository itself: it 
>> does not contain any passwords (or credentials).
>>
>> Thomas
>>
>> Lisa Ruby schrieb am 02.12.2020 um 17:01:
>>> Try looking in .git/config
>>>
>>> Lisa
>>>
>>> On 12/2/2020 1:28 AM, Thomas Kellerer wrote:
 Hello,

 I accidently entered the wrong password for my git remote server and chose 
 "Save password".

 How can I delete that stored password? (NetBeans seems to try to use the 
 old password, causing my Git account to be locked)

 I could find a "svn" sub-directory in my NetBeans User directory which 
 apparently stores this for Subversion, but nothing for git.

 Thanks
 Thomas
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to reset/remove the stored Git password?

2020-12-02 Thread Lisa Ruby
Wish I could help more, but I only use git locally.
Might be helpful to try the git community.

https://git-scm.com/community

And/or the git documentation here:

https://git-scm.com/doc

Lisa

On 12/2/2020 10:45 PM, Thomas Kellerer wrote:
> Hmm.
>
> There is no such directory in the NetBeans user directory.
>
> If you are referring to the the config file in the Git repository itself: it 
> does not contain any passwords (or credentials).
>
> Thomas
>
> Lisa Ruby schrieb am 02.12.2020 um 17:01:
>> Try looking in .git/config
>>
>> Lisa
>>
>> On 12/2/2020 1:28 AM, Thomas Kellerer wrote:
>>> Hello,
>>>
>>> I accidently entered the wrong password for my git remote server and chose 
>>> "Save password".
>>>
>>> How can I delete that stored password? (NetBeans seems to try to use the 
>>> old password, causing my Git account to be locked)
>>>
>>> I could find a "svn" sub-directory in my NetBeans User directory which 
>>> apparently stores this for Subversion, but nothing for git.
>>>
>>> Thanks
>>> Thomas
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to reset/remove the stored Git password?

2020-12-02 Thread Thomas Kellerer
Hmm.

There is no such directory in the NetBeans user directory.

If you are referring to the the config file in the Git repository itself: it 
does not contain any passwords (or credentials).

Thomas

Lisa Ruby schrieb am 02.12.2020 um 17:01:
> Try looking in .git/config
>
> Lisa
>
> On 12/2/2020 1:28 AM, Thomas Kellerer wrote:
>> Hello,
>>
>> I accidently entered the wrong password for my git remote server and chose 
>> "Save password".
>>
>> How can I delete that stored password? (NetBeans seems to try to use the old 
>> password, causing my Git account to be locked)
>>
>> I could find a "svn" sub-directory in my NetBeans User directory which 
>> apparently stores this for Subversion, but nothing for git.
>>
>> Thanks
>> Thomas

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to reset/remove the stored Git password?

2020-12-02 Thread Lisa Ruby
Try looking in .git/config

Lisa

On 12/2/2020 1:28 AM, Thomas Kellerer wrote:
> Hello,
>
> I accidently entered the wrong password for my git remote server and chose 
> "Save password".
>
> How can I delete that stored password? (NetBeans seems to try to use the old 
> password, causing my Git account to be locked)
>
> I could find a "svn" sub-directory in my NetBeans User directory which 
> apparently stores this for Subversion, but nothing for git.
>
> Thanks
> Thomas
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists