rissandimo
rissandimo

Reputation: 63

Gitkraken says repo is private but its public

I have my repo stored on GitHub and visibility is public but since a few days when I try to open the repository on Gitgraken, it says that the repo I'm trying to open is private and it won't let me access it.

Things I have tried:

However, it still displays that message.
I have tons of projects and that's the only project which gets this message.

Upvotes: 5

Views: 2819

Answers (2)

Javed Shaikh
Javed Shaikh

Reputation: 1

For me, unsetting the local configs remote.personal_origin.url and remote.personal_origin.fetch solved the issues.

Commands:

git config --local --unset remote.personal_origin.url
git config --local --unset remote.personal_origin.fetch

Upvotes: 0

VonC
VonC

Reputation: 1328182

Check if:

  • GitKraken is using an HTTPS URL to access that repository
  • if git config credential.helper is set

If other projects (under the same GitHub user account) are accessible from GitKraken, then it is not an authentication issue.
What remains could be a typo in the repository name.

Do check the GitKraken logs to see if there is any more clue.

Upvotes: 2

Related Questions