Sarah Szabo
Sarah Szabo

Reputation: 10825

Netbeans 8.2 Can't Verify Git Credentials?

I have a Java project that I'm making which has had several commits on github. I recently changed OS versions on Kubuntu from 17.10 -> 18.04, and have installed Netbeans 8.2 with Java Version 1.8.0_171 to avoid Java 9+ compatibility issues.

I can't clone the project from git, every time I try to import it using the built in Git "Team" support, my cridentials bounce back. This is mysterious since I use KeePassX to manage all my ID information and directly copy-paste it. I've verified that this is the correct sign in information by signing out on github.com and signing back in only using information in KeePassX, which is successful. I also directly copy the git address into the HTTPS field in Netbeans.

Am I doing something wrong? Is there a workaround for this? Is this a well-known error?

Screencap of the error

enter image description here

Edit 0: I've made an exact (And quickly made) video of the process and error, you can find it here: https://www.youtube.com/watch?v=W48QD1Tr6GU&feature=youtu.be

Upvotes: 4

Views: 4571

Answers (3)

StevieMcbeans
StevieMcbeans

Reputation: 1

Beginning August 13, 2021, we will no longer accept account passwords when authenticating Git operations on GitHub.com

https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/

Upvotes: 0

gsabbih
gsabbih

Reputation: 1

This might be quiet old but hope it helps. Had the same issue

In NetBeans you can uncheck " Persist Remote" beside remote name.

Upvotes: 0

VonC
VonC

Reputation: 1329972

The exact error is

Incorrect credentials for repository at github.com:SarahSzabo/StellarOPUSConverter.git

That does not look like an https URL (it could be an SSH one, with an ~/.ssh/config file)

Make sure to copy the https URL:

https://github.com/SarahSzabo/StellarOPUSConverter

Upvotes: 1

Related Questions