ProjectCollection

How to Submit Your Project

  1. Fork this Repository: Click on the ‘Fork’ button at the top right corner of this page to create a copy of this repository under your GitHub account.

  2. Clone the Forked Repository: Clone the repository to your local machine using the following command:

     git clone https://github.com/your-username/ProjectCollection.git
    
  3. Navigate to the Repository Directory:

     cd ProjectCollection.git
    
  4. Create a New Branch: Create a new branch for your submission:

     git checkout -b add-your-project
    
  5. Add Your Project to the List: Open the README.md file in a text editor and add your project details in the following format:

     - [Project Name](https://github.com/your-username/project-repo): Brief description of your project. Along with how can we setup it.
    

    Please add your project under the appropriate category or create a new category if it doesn’t exist.

  6. Commit Your Changes:

     git add README.md
     git commit -m "Add Project Name to the collection"
    
  7. Push to Your Forked Repository:

     git push origin add-your-project
    
  8. Create a Pull Request: Go to your forked repository on GitHub and click on the ‘Compare & pull request’ button. Provide a meaningful description of your project and submit the pull request.