Skip to content

Latest commit

History

History
38 lines (24 loc) 路 1.48 KB

CONTRIBUTING.md

File metadata and controls

38 lines (24 loc) 路 1.48 KB

Contributing to the Learning Repository

Thank you for your interest in contributing. Your contributions can help make this repository a valuable resource for the community.

How to Contribute

  1. Fork the Repository: If you're not a collaborator or contributor already, fork the repository to your GitHub account.

  2. Clone the Repository: Clone your forked repository to your local machine:

    git clone https://github.com/wesleybertipaglia/interview.git
    
  3. Create a New Branch: Create a new branch for your contribution: git checkout -b feature/your-contribution Please choose a descriptive branch name related to your contribution.

  4. Make Your Contribution: Create or modify content in the repository. You can add new tutorials, fix typos, or improve existing material.

  5. Commit Your Changes: After making your changes, commit them with a clear and concise commit message:

    git add .
    git commit -m "Your commit message"
    
  6. Push to Your Fork: Push your changes to your GitHub fork:

    git push origin feature/your-contribution
    
  7. Create a Pull Request: Go to the original repository on GitHub and create a pull request (PR). Provide a clear description of your changes and why they are valuable.

  8. Review and Collaboration: Collaborators and maintainers will review your PR. Be prepared to address any feedback or suggestions.

  9. Merge: Once your PR is approved, it will be merged into the main repository.