# Export commit-level evidence without email dedupe

**Use case:** 

Preserve repeated commit evidence rows by disabling cross-repository email deduplication.

## Input

```json
{
  "repositoryUrls": [
    {
      "url": "https://github.com/apify/crawlee"
    }
  ],
  "repositories": [
    "apify/crawlee"
  ],
  "organization": "",
  "maxCommitsPerRepo": 20,
  "since": "",
  "until": "",
  "includeNoreplyEmails": false,
  "dedupeByEmail": false
}
```

## Output

```json
{
  "repository": {
    "label": "Repository",
    "format": "text"
  },
  "authorEmail": {
    "label": "Email",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "githubLogin": {
    "label": "Login",
    "format": "text"
  },
  "isNoreplyEmail": {
    "label": "Noreply",
    "format": "boolean"
  },
  "committedAt": {
    "label": "Committed",
    "format": "date"
  },
  "commitUrl": {
    "label": "Commit",
    "format": "link"
  },
  "sourceType": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Contributor Email Scraper](https://apify.com/fetch_cat/github-contributor-email-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/github-contributor-email-scraper) to learn more, explore other use cases, and run it yourself.