Skip to content

Latest commit

 

History

History
72 lines (38 loc) · 1.64 KB

CONTRIBUTING.md

File metadata and controls

72 lines (38 loc) · 1.64 KB

This file provides guidelines for contributors on how to add projects to the repository:

Thank you for considering contributing to My GoLang projects repository! We welcome your suggestions and additions to make this collection even better.

How to Contribute

Adding a Project

  1. Fork this Repository

  2. Clone the forked repository to your local machine:

git clone https://github.com/Raghul-M/Go-Lang-Projects.git
  1. Create a new branch for your feature or project:

    $ git checkout -b project-name
  2. Create or Add your GoLang project to the Repo and make sure to follow the structure mentioned below:

    $ mkdir <project-name>
    
    $ cd <project-name>
    
  3. Commit your changes:

    git commit -m "Add: [Your Project Name]"
  4. Push your changes to your GitHub repository:

    git push origin branchname
  5. Create a pull request from your forked repository to the main repository.

  6. Wait for the maintainers to review your pull request. If any changes are needed, be responsive to feedback and update your branch accordingly.

Updating an Existing Project

If you want to update the information for an existing project:

  1. Fork the repository and clone it to your local machine (if you haven't already).

  2. Navigate to the project's directory and update the relevant information.

  3. Commit your changes with a clear message.

  4. Push your changes to your GitHub repository.

  5. Create a pull request as explained above.

License

By contributing, you agree that your contributions will be licensed under the MIT License.

Happy coding!