1

I'm trying to clone a private repository. I have tried with 2 ways

  1. Using Android Studio

Result enter image description here

  1. Using CMD

Result

C:\thoughtcast>git clone https://github.com/thoughtcastapp/git.android.ThoughtCast.git
Cloning into 'git.android.ThoughtCast'...
remote: Repository not found.
fatal: repository 'https://github.com/thoughtcastapp/git.android.ThoughtCast.git/' not found

Screenshot to verify the repo

enter image description here

How do I access my private repository?

2
  • 1
    Can you truly confirm the repository does exist. When i tried to browse to the address i get an error.
    – Any Moose
    Sep 6, 2018 at 18:39
  • 1
    Check the edit... I posted a screenshot of the repo. Btw, it's private, so you can't access it unless you'e me. Sep 6, 2018 at 18:43

1 Answer 1

2

There can be multiple causes for this error. Try following in the order mentioned

  1. Include your username in the repo url
git clone https://[email protected]/thoughtcastapp/git.android.ThoughtCast.git/
  1. Identify remote git repository to your terminal.
git remote set-url origin https://github.com/thoughtcastapp/git.android.ThoughtCast.git/
  1. Uninstall the git credentials manager and reinstall (for cmd, run as administrator)
$ sudo git credential-manager uninstall
$ sudo git credential-manager install
  1. If repo has been created by another user, check if you have read-write access.
8
  • 1
    Answer updated. Please retry. First one should get the job done :)
    – nkshio
    Sep 6, 2018 at 18:50
  • Where can I find if I have read-write access? It's not in Settings. Sep 6, 2018 at 18:51
  • 1
    special characters in the password cause this problem. I have updated answer to prompt for the password later. I am positive about the first one. Keep me in the loop.
    – nkshio
    Sep 6, 2018 at 19:00
  • 1
    :|. Give #3 a try with sudo after #2.
    – nkshio
    Sep 6, 2018 at 19:06
  • 1
    sudo doesn't exist on windows. Sep 6, 2018 at 19:08

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.