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 trialDaniel Oropeza
4,432 PointsVersion Control Suggestions?
I'm looking to incorporate version control for a new project. I want to have version control where my repository is private. I WON'T need to collaborate with any other developers either.
Now I'm not very experienced with GitHub but I understand that the GitHub repositories are saved on the GitHub servers? I also understand that all GitHub repositories are PUBLIC unless you are playing for GitHub enterprise.
Is there another free alternative to GitHub enterprise? Or alternatively, is there a way to incorporate version control to my local computer?
Thanks in advance!
3 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHey Daniel,
Github is a repository that works with Git to store information/code. Git is the version control system, and it works locally on your computer. If you're not working/collaborating with anyone else, you can just use Git.
Checkout the Course Git Basics or the Workshop Get Acquainted with Git.
Hope that helps.
Nicholas Olsen
Front End Web Development Techdegree Student 19,342 PointsBitbucket is a free alternative to Github that offers free private repositories.
Kevin Korte
28,149 PointsJason is correct, you could just use Git, and that would keep your version control private.
You are also correct Daniel, that you have to pay a small monthly fee to have a private repo on Github.
Bitbucket offers free private repos if your team is 5 or less, which you would be. So bitbucket might be a good alternative to having a visual way to look at your repo that is private.
Daniel Oropeza
4,432 PointsDaniel Oropeza
4,432 PointsThanks you good sir!