What is Branch?
An independent line of development that lets you work on features without affecting the main code
Why It Matters
Branches let multiple features be developed simultaneously without interfering with each other
Real-World Example
Creating a 'feature/user-profiles' branch to build profiles without affecting the main site
Learn More at buildDay Melbourne
Want to understand these concepts hands-on? Join our one-day workshop and build a real web application from scratch.
Related Terms
Git
A system that tracks every change to your code, letting you see history, undo mistakes, and collaborate with others
Merge
Combining code changes from one branch into another
Commit
A saved snapshot of your code changes with a message describing what changed
GitHub
A website where developers store, share, and collaborate on code using Git
Version Control
A system that records changes to files over time, allowing you to recall specific versions later
Pull Request
A request to merge your code changes into the main project, allowing others to review first