From aedc01bf18141c0f431394d975d57cdee4abfd6b Mon Sep 17 00:00:00 2001 From: Christopher Pitt Date: Mon, 9 May 2016 16:45:46 +1200 Subject: [PATCH] Simplified branching code --- docs/en/05_Contributing/01_Code.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/en/05_Contributing/01_Code.md b/docs/en/05_Contributing/01_Code.md index 343e10f0e..a44d06f1c 100644 --- a/docs/en/05_Contributing/01_Code.md +++ b/docs/en/05_Contributing/01_Code.md @@ -47,8 +47,7 @@ We ask for this so that the ownership in the license is clear and unambiguous, a # verify current branch 'base' then branch and switch git status - git branch ###-description - git checkout ###-description + git checkout -b ###-description 5. As time passes, the upstream repository accumulates new commits. Keep your working copy's branch and issue branch up to date by periodically [rebasing your development branch on the latest upstream](code#rebase-your-development-branch-on-the-latest-upstream).