Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1.67 KB

CONTRIBUTING.md

File metadata and controls

49 lines (37 loc) · 1.67 KB

Contributing Guidelines

Thank you for your interest in contributing to our project! We appreciate your help in making it better. Please follow the guidelines below to get started.

Fork the Repository

  1. Navigate to the project's repository on GitHub.
  2. Click on the "Fork" button in the top-right corner of the page.
  3. This will create a copy of the repository under your GitHub account.

Clone the Repository

  1. On your local machine, open a terminal.
  2. Use the git clone command followed by the URL of your forked repository.
    git clone https://github.com/your-username/text-to-doodle.git
    
  3. This will create a local copy of the repository on your machine.

Make Changes Locally

  1. Navigate to the project's directory on your local machine.
  2. Create a new branch to work on your changes.
    git checkout -b my-branch
    
  3. Make the necessary changes to the project files.
  4. Commit your changes with a descriptive message.
    git commit -m "Add new feature"
    

Push Changes and Create a Pull Request

  1. Push your changes to your forked repository.
    git push origin my-branch
    
  2. Visit the original repository on GitHub.
  3. Click on the "New Pull Request" button.
  4. Select your branch from the dropdown menu.
  5. Provide a descriptive title and description for your pull request.
  6. Click on the "Create Pull Request" button to submit your changes.

Code Review and Merge

Once your pull request is submitted, our team will review your changes. We may provide feedback or request additional changes. Once the changes are approved, they will be merged into the main repository.

Thank you for your contribution!