From 82ecbd682acae9faec0f281b1e1a7885684ba26c Mon Sep 17 00:00:00 2001 From: Nick Olds Date: Thu, 8 Sep 2016 16:10:40 -0400 Subject: [PATCH] changes branches diagram --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index affd721..b07a704 100644 --- a/readme.md +++ b/readme.md @@ -69,7 +69,7 @@ What makes a branch special in git, is that we're always *on* a specific branch, **Terminology:** HEAD is simply a reference to the current or most recent commit! -![Git Branch Diagram](./branching.svg) +![Git Branch Diagram](./branches.svg) > The diagram above visualizes a repository with multiple lines of development, one is the master branch, and the others are feature branches. By developing in branches, it’s not only possible to work on branches in parallel, but it also keeps the main master branch free from questionable code.