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 trial

Development Tools

Git Flow

Can someone describe more on why we need to make new branch for git flow ?

1 Answer

Nachiket Kumar
Nachiket Kumar
3,590 Points

I'm not a pro git user but my understanding is that a lot of teams keep the master branch only for production. i.e, what is pushed to the master often is automatically pushed to the production server and those changes 'go live' instantly.

Therefore, whenever you are adding anything or making any changes, you should do those on a branch, test them in your development environment and submit a pull request. A team member reviews your changes and merges them into master if all works as it should.

Branching is to avoid introducing errors into your production code and allowing you to test something safely. I could be wrong about some parts and am happy to be corrected.