> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nerdit.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Nudge Git

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json post /api/link/git-nudge
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/link/git-nudge:
    post:
      tags:
        - Link
      summary: Nudge Git
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: nudge_git
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitNudgeRequest'
        required: true
      responses:
        '202':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitNudgeView'
          description: HTTP 202 response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: HTTP 422 response
components:
  schemas:
    GitNudgeRequest:
      properties:
        repo:
          type: string
          maxLength: 200
          minLength: 3
          title: Repo
        repo_id:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Repo Id
        ref:
          type: string
          maxLength: 255
          minLength: 1
          title: Ref
        sha:
          type: string
          maxLength: 40
          minLength: 40
          title: Sha
      additionalProperties: false
      type: object
      required:
        - repo
        - ref
        - sha
      title: GitNudgeRequest
    GitNudgeView:
      properties:
        matched:
          items:
            type: string
          type: array
          title: Matched
        ignored:
          items:
            type: string
          type: array
          title: Ignored
        deduped:
          items:
            type: string
          type: array
          title: Deduped
      type: object
      required:
        - matched
        - ignored
        - deduped
      title: GitNudgeView
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````