I have several Git repositories that all have one branch called ‘master.’ But what are branches and what can you do with them?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Branches are used when you want to develop a specific feature in an environment for itself. It’s so you don’t mix untested code with trunk, the generally stable version. You branch until you have developed and tested the feature, then you merge the branch back into trunk.