From 982d851154c34a78f4d6da11fd6849939dbfe6db Mon Sep 17 00:00:00 2001 From: gilch Date: Thu, 26 Jan 2017 13:13:26 -0700 Subject: [PATCH] change effect to affect http://www.quickanddirtytips.com/education/grammar/affect-versus-effect --- text/s1-c06-branching-and-merging.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/s1-c06-branching-and-merging.textile b/text/s1-c06-branching-and-merging.textile index 9e51055..13556e2 100644 --- a/text/s1-c06-branching-and-merging.textile +++ b/text/s1-c06-branching-and-merging.textile @@ -89,7 +89,7 @@ You have a @master@ branch that is _always_ stable - you never merge anything in note. It's a common error to think of the @master@ branch as being equivalent to Subversion's @trunk@. However, a custom @development@ branch is much closer in practice to the Subversion @trunk@, where experimental work is done. -You create a new branch each time you begin to work on a story or feature, branching it off your current @development@ branch each time, so if you get blocked and need to put it on hold, it doesn't effect anything else. When you do get back to them, you rebase them to the current @development@ and it is just like you started from there. Often times you merge the branch back into @development@ and delete it the same day that you created it. +You create a new branch each time you begin to work on a story or feature, branching it off your current @development@ branch each time, so if you get blocked and need to put it on hold, it doesn't affect anything else. When you do get back to them, you rebase them to the current @development@ and it is just like you started from there. Often times you merge the branch back into @development@ and delete it the same day that you created it. If you get a huge project or idea - say refactoring the entire code base to the newest version of your framework or switching database vendors or something, you create a long-term branch, continuously rebase it to keep it in line with other development, and once everything is tested and ready, merge it in with your master.