diff --git a/README.md b/README.md index 44183b9..5450954 100644 --- a/README.md +++ b/README.md @@ -25,31 +25,48 @@ Welcome to our Job Portal Project! This project aims to create a user-friendly p *** **Getting Started** -Contributing Contributions are always welcome! +Contributions are always welcome! 1. Fork this repository. + 2. Clone your forked copy of the project. -``` git clone htpps://github.com/your-username/jobproject.git``` + + git clone htpps://github.com/your-username/jobproject.git + 3. Add reference to original repository,use the following command - ``` git remote add upstream htpps://github.com/your-username/jobproject.git ``` - 4. Check the remotes for this repository,use following command. - ```git remote -v``` + + git remote add upstream htpps://github.com/your-username/jobproject.git + + 4. Check the remotes for this repository,use following command. + + git remote -v - 5. Always take a pull from the upstream repository to your main branch - to keep it up-to-date with the main - ```git pull upstream main``` + 4. Always take a pull from the upstream repository to your main branch + to keep it up-to-date with the main + + git pull upstream main + 6. Create a new branch. - ``` git checkout -b ``` + + git checkout -b 7. You are all set ! Perfom your desired changes to the code base. + 8. Track your changes. - ```git add .``` + + git add . + 9. Commit your changes. - ```git commit -m "relevant commit message"``` + + git commit -m "relevant commit message" + 10. Push the committed changes in your feature branch to your remote repo. - ``` git push -u origin ``` - 11. To create a pull request, click on "Compare and pull requests". + + git push -u origin + + 12. To create a pull request, click on "Compare and pull requests". + Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to. ***