From 9242fffbb021487b48900f24f8b90003ae263ce3 Mon Sep 17 00:00:00 2001 From: Scott Callaghan Date: Tue, 8 Jun 2021 08:54:29 -0700 Subject: [PATCH] Fixed typo in new branch creation command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17b93ca..7a57010 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Now that our forked repository is configured to track *upstream* and we have syn 1. Create a new branch for your feature / bug fix / **docs** contributions. ``` -$ git branch my_new_branch +$ git checkout -b my_new_branch > Switched to a new branch 'my_new_branch' ```