Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.11 KB

CONTRIBUTING.md

File metadata and controls

39 lines (31 loc) · 1.11 KB

Contributing to iOS Code Standards

Thank you for your interest in contributing to this repository! Please follow these steps to propose changes:

  1. Fork the repository:

    • Click the "Fork" button in the top-right corner of this repository to create your copy.
  2. Clone your fork:

    • Clone your forked repository to your local machine:
      git clone https://github.com/shobhakartiwari/iOS_Lead_Interview
      cd iOS_Lead_Interview
  3. Create a new branch:

    • Create a branch for your changes:
      git checkout -b feature/your-feature-name
  4. Make changes and commit:

    • Add your changes and commit them with a descriptive message:
      git add .
      git commit -m "Describe your changes"
  5. Push your changes:

    • Push the changes to your fork:
      git push origin feature/your-feature-name
  6. Submit a pull request:

    • Go to your forked repository on GitHub.
    • Click Compare & pull request.
    • Add a title and description for your PR, then submit it for review.

Thank you for contributing!