Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 2.01 KB

CONTRIBUTING.md

File metadata and controls

45 lines (35 loc) · 2.01 KB

How To Contribute?🤔

Guidelines for contributing to this repository!

  1. Find an issue which you want to resolve. You can find issues from the issues tab associated with the repository!

  2. Fork the repository associated with the issue to your local GitHub organization. This means that you will have a copy of the repository under

your-GitHub-username/Intelligent-AI
  1. Clone the repository to your local machine using
git clone https://github.com/github-username/Intelligent-AI.git

4 Create a new branch for your fix using

git checkout -b Yourbranch-name-here
  1. Make the changes for the issue you are trying to address or the feature that you want to add.

  2. Add the file contents of the changed files to the "snapshot" git uses to manage the state of the project, also known as the index.

git add insert-paths-of-changed-files-here
  1. Commit to store the contents of the index with a descriptive message.
git commit -m "<Insert a short message of the changes made here>"
  1. Push the changes to the remote repository using
git push origin Yourbranch-name-here
  1. Create a pull request to the upstream repository.

  2. Title the pull request with a short description of the changes made and the issue or bug number associated with your change. For example, you can title an issue like so "Added More Content! #3453".

  3. Explain the changes you made, any problems you believe the pull request has, and any queries you have for the maintainer in the description of the pull request. No pull request is flawless, so it's okay if yours isn't too; the reviewer will be able to assist you in fixing any issues and making improvements.

  4. Wait for the pull request to be reviewed by a maintainer. Make changes to the pull request if the reviewing maintainer recommends them.

  5. Congratulations! Celebrate your success after your pull request is merged!💜😁🚀

💥 Issues

If you need any help, you can ask questions on our discussions tab.