From 9d6ffae8cb24d3c93b4ae24bc4e7dc5f0f24f810 Mon Sep 17 00:00:00 2001 From: Doug Crescenzi Date: Mon, 4 Jun 2018 20:34:04 -0400 Subject: [PATCH] removed mentions of 'development' branch in Contribution Guidelines (#966) --- CONTRIBUTING.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e54794db8..475b1155d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,12 +21,11 @@ As a contributor, you are expected to fork this repository, work on your own for ``` cd openzeppelin-solidity git fetch upstream -git checkout development -git pull --rebase upstream development +git pull --rebase upstream master ``` NOTE: The directory `openzeppelin-solidity` represents your fork's local copy. -2) Branch out from `development` into `fix/some-bug-#123`: +2) Branch out from `master` into `fix/some-bug-#123`: (Postfixing #123 will associate your PR with the issue #123 and make everyone's life easier =D) ``` git checkout -b fix/some-bug-#123