Book Image

Mastering Unity 5.x

By : Alan Thorn
Book Image

Mastering Unity 5.x

By: Alan Thorn

Overview of this book

Mastering Unity 5.x is for developers wishing to optimize the features of Unity 5.x. With an in-depth focus on a practical project, learn all about Unity architecture and impressive animation techniques. With this book, produce fun games with confidence.
Table of Contents (16 chapters)
Mastering Unity 5.x
Credits
About the Author
Acknowledgment
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Branches and branching


An impressive feature of Git is branching. There are times during development when your project enters a state that you're happy with. The work may not be completed or final, but you've reached an important milestone that should be committed and saved to the history. At this point, your project could take multiple directions, and you'd like to experiment a little, trying out new ideas or developing clever solutions for new features. On reaching this point, you effectively need to Branch your work. This instructs Git to make a duplicate of your work and its history to this point (a new Branch), and then you can make further commits on the new branch, without affecting the history of the original branch. That way, if you make changes that you later decide against or wish to remove, you can simply abandon the branch and return to the original, or make a new branch, and so on.

Note

Branching is great for team collaboration too. Different developers can each work on their...