Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions CONTRIBUTING_QUICKSTART.md
Original file line number Diff line number Diff line change
@@ -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!