Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialEric Drake
6,339 Pointsgit clone - repository not found
I'm trying to use a git remote repository. The remote repository is hosted on a Ubuntu server on my company intranet. The site is accessible on the intranet at http://new.doublel.com. I want to clone this repository to my Windows computer. I created a bare repository on my Windows computer and tried to clone the remote repository into the bare repository using git clone http://new.doublel.com. Git throws an error that the remote repository was not found. What am I doing wrong?
2 Answers
jacobproffer
24,604 PointsHey Eric,
You might want to check what type of access you have to the repo. If you have read-only, then you will not be able to clone the repo. This is important to check if the repo is set to private.
Useful post: link
Eric Drake
6,339 PointsThanks for your help. I've looked into what you've suggested. I guess I'm not sure what I understand how to check what kind of access I have to my repository.
eric@gramps:/var/www/new.doublel.com$ git remote -v doublelglobal http://new.doublel.com (fetch) doublelglobal http://new.doublel.com (push)