Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,625 PointsGithub branches
What are default and protected branch on Github? Is here "gh-pages" is a default branch and "master" is protected branch? Please elaborate.
1 Answer

Grace Kelly
33,990 PointsThe default branch is your main branch. Here the default branch is your master branch. A protected branch is a branch that has a number of protections in place for example, commits cannot be forced pushed to it or it cannot be deleted. In this scenario gh-pages
is a branch that you can push changes that you would like to appear on your github page :)
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,625 PointsAakash Srivastav
Full Stack JavaScript Techdegree Student 11,625 PointsSo a "protected branch" is apart from these two branches? Actually I have my my "master branch" as the proctected branch. Is that right?