Skip to content

Rutu128/club-gamma-backend

 
 

Repository files navigation

Contribution Guidelines 📚

Welcome to Club Gamma project! We appreciate your interest and contributions. Please read the following guidelines carefully to ensure a smooth collaboration.

General Rules:

  • Creativity Allowed: Feel free to submit pull requests that break the rules—we might just merge them anyway!
  • Preserve Existing Content: Do not remove existing content.
  • Code Style: Your code can be neat, messy, simple, or complex. As long as it works, it's welcome.
  • Add Your Name: Remember to add your name to the contributorsList file.
  • Keep it Small: Aim for small pull requests to minimize merge conflicts and streamline reviews.

Getting Started 🤗🚀

  1. Fork the Repository:

    • Use the fork button at the top right of the repository page.
  2. Clone Your Fork:

    • Clone the forked repository to your local machine.
    git clone https://github.com/clubgamma/club-gamma-backend.git
  3. Navigate to the Project Directory:

    cd club-gamma-backend
  4. Create a New Branch:

    git checkout -b my-new-branch
  5. Make Your Changes:

    git add .
  6. Commit Your Changes:

    git commit -m "Relevant message"
  7. Push to Your Branch:

    git push origin my-new-branch
  8. Create a Pull Request:

    • Go to your forked repository on GitHub and create a pull request to the main repository.

Avoiding Conflicts {Syncing Your Fork}

To keep your fork up-to-date with the main repository and avoid conflicts:

  1. Add Upstream Remote:

    git remote add upstream https://github.com/clubgamma/club-gamma-backend.git
  2. Verify the New Remote:

    git remote -v
  3. Sync Your Fork with Upstream:

    git fetch upstream
    git merge upstream/main

    This will pull in changes from the parent repository and help you resolve any conflicts.

  4. Keep Updated:

    • Regularly pull changes from the upstream repository to keep your fork updated.

We look forward to your contributions and thank you for being a part of our community!

About

This is the official repo for club gamma hacktoberfest backend server.

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 76.7%
  • EJS 23.3%