From 7f991730fed5c208bc46bc560a649bbb9e446037 Mon Sep 17 00:00:00 2001 From: Ezinne Anne Emilia Date: Fri, 25 Nov 2022 20:16:20 +0100 Subject: [PATCH] Made corrections in the CONTRIBUTING.md file --- CONTRIBUTING.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a81e83..1f04d81 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,7 +27,7 @@ We love your input! We want to make contributing to this project as easy and tra - Keep your cloned repo upto date by pulling from upstream (this will also avoid any merge conflicts while committing new changes) ```sh - git pull upstream master + git pull upstream dev ``` - Create your feature branch @@ -36,10 +36,16 @@ We love your input! We want to make contributing to this project as easy and tra git checkout -b ``` +- Include the changes you have made for commits + + ```sh + git add + ``` + - Commit all the changes ```sh - git commit -am "Meaningful commit message" + git commit -m "Meaningful commit message" ``` - Push the changes for review