Skip to content

Latest commit

 

History

History
88 lines (62 loc) · 2.41 KB

CONTRIBUTING.md

File metadata and controls

88 lines (62 loc) · 2.41 KB

Contributors Guide⚡

Welcome to our open-source project! 😍
We appreciate your interest in contributing.😊
This guide will help you get started with the project and make your first contribution.

Creating first Pull Request 🌟


  1. Create a folder at you desired location (usually at your desktop).

  2. Open Git Bash Here.

  3. Create a Git Repository. Run the command git init

  4. Fork the repository.

  5. Clone your forked repository of project.

git clone https://github.com/<your-github-username>/Projects.git
  1. Navigate to the project directory.
cd Projects
  1. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/Developers-Adgitm/Projects.git
  1. Check the remotes for this repository.
git remote -v
  1. Always take a pull from the upstream repository to your main branch to keep it updated as per the main repository.
git pull upstream main
  1. Create a new branch.
git checkout -b <your_branch_name>
  1. Perform your desired changes to the code base.

  2. Check your changes

git status
git diff
  1. Stage your changes
git add . <\files_that_you made_changes>
  1. Commit your changes.
git commit -m "<your_commit_message>"
  1. Push the committed changes in your feature branch to your remote repository.
git push -u origin <your_branch_name>
  1. To create a Pull Request, click on compare and pull requests.

  2. Add an appropriate title and description to your PR explaining your changes.

  3. Click on create pull request.

Congratulations🎉, you have made a PR to the Front-End Projects. Wait for your submission to be accepted and your PR to be merged by a maintainer.

If you have any doubts please let us know in comments.

Code of Conduct 😇

Please follow our project's code of conduct while contributing.
Treat all contributors and users with respect and create a positive and inclusive environment for everyone.

License 📄

The project is licensed under [MIT]. Make sure to review and comply with the license terms.
We hope this guide helps you get started with contributing to our open-source project. Thank you for your contribution!