Skip to content

Commit

Permalink
Adds a description of what a branch actually is
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Malcolm committed Jul 17, 2011
1 parent 82caf13 commit 37e11a7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.textile
Expand Up @@ -191,6 +191,8 @@ You have now un-done your changes. Your file is now empty

h2. Branching

Most large code bases have at least two branches - a 'live' branch and a 'development' branch. The live branch is code which is OK to be deployed on to a website, or downloaded by customers. The development branch allows developers to work on features which might not be bug free. Only once everyone is happy with the development branch would it be merged with the live branch.

Creating a branch in Git is easy. The @git branch@ command, when used by itself, will list the branches you currently have

<pre><code>
Expand Down

0 comments on commit 37e11a7

Please sign in to comment.