1

Previously I used VSCodium for my C and C++ programming needs. But I a beginning to like KDevelop more. There is actually 2 things that I'm unable to setup properly on KDevelop: Github integration and remote debugging with vgdb (I will try to figure remote debugging by myself).

Edit: to be more specific When I try to sign in with my github account it keeps failing even when username and password are correct. I get this when I try to sign in:

Authentication failed. Please try again.

Could not create token: "KDevelop Github Provider : <My hostname> - Thu Feb 3 16:55:43 2022 GMT" You can check the authorization for this application and others at https://github.com/settings/tokens

I'm on Kubuntu 21.10, KDE Plasma 5.23.5 (Kubuntu backports PPA enabled to get latest Plasma version)

td211
  • 403

2 Answers2

0

Use Project -> Fetch Project... menu item, which provides the GitHub provider that allow cloning from GH.

Alternatively, you can clone the project manually and just import it into KDevelop. It doesn't really matter for the IDE where the code came from initially.

arrowd
  • 176
0

GitHub no longer accepts authentication with a password, generate a personal access token and use it as the password and it should work.

Reference: GitHub Documentation

td211
  • 403