diff --git a/CONTRIBUTING_QUICKSTART.md b/CONTRIBUTING_QUICKSTART.md new file mode 100644 index 00000000..d749dbf4 --- /dev/null +++ b/CONTRIBUTING_QUICKSTART.md @@ -0,0 +1,59 @@ +# Quick Start Guide for Contributors + +Welcome to the OneDrive API documentation project! This quick-start guide will help you get up and running with your first contribution. + +## Prerequisites + +- Git installed on your machine +- A GitHub account +- A fork of this repository + +## Getting Started + +### 1. Clone Your Fork + +```bash +git clone https://github.com/YOUR_USERNAME/onedrive-api-docs.git +cd onedrive-api-docs +``` + +### 2. Create a New Branch + +```bash +git checkout -b docs/your-feature-name +``` + +### 3. Make Your Changes + +Edit the documentation files as needed. This repository uses: +- **TypeScript** (78.5%) +- **PowerShell** (21.5%) + +### 4. Commit Your Changes + +```bash +git add . +git commit -m "Description of your changes" +``` + +### 5. Push to Your Fork + +```bash +git push -u fork docs/quickstart-contribution +``` + +If GitHub asks for credentials, use a personal access token instead of your password. + +### 6. Open a Pull Request + +1. Go to your fork in your browser +2. Click the "Compare & pull request" button +3. Fill in the PR details: + - **Title**: Brief description of your changes + - **Description**: Detailed explanation of what you've added or modified + +## Need Help? + +If you have any questions or run into issues, please open an issue in this repository. + +Thank you for contributing to the OneDrive API documentation!