diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 8b4023fa77d03c6ab5f380a4792df1679ae861c5..13f17648ecc0de01316b8a7dd90f6f4c3c0d7cb7 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,14 +1,12 @@
 ### Contributing to this repo
 
 * Fork the repository
-* Clone your fork using `https://git.amrita.edu/<your_username>/hodor-webapp`
+* Clone your fork using `https://git.amrita.edu/<your_username>/hodor-backend`
 * Make a new branch with your changes using `git branch -b <branch_name>`. For
  instance, if you are working on adding tests, you should do something like `git branch -b add_tests`.
-* Send in a pull-request.
-* Once you're done with the changes follow the commands to push to origin repo:
-  `git add <filename>`
-  `git commit -m "<Comment on changes made>"`
-  `git push origin <branch_name>`
+* Make your desired changes.
+* Stage changes to git using `git add <filenames>`
+* Commit your changes using `git commit -m "<A brief summary of your work>"`
+* Push to your fork and the new branch you created like : `git push <url_of_fork> <branch_name>`
+* Go to GitLab and send a merge-request!
 
-
-More instructions coming soon :)