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

# Submit Change

> Submit changes done to the database (just like a commit being submited in git)

<Tabs>
  <Tab title="Cypher">
    ```jsx theme={null}
    // Submit changes done to the database
    CHANGE SUBMIT

    // Checkout to main branch
    checkout
    ```
  </Tab>

  <Tab title="Python SDK">
    ```python theme={null}
    # Submit changes done to the database
    client.query("CHANGE SUBMIT")

    # Checkout to main branch
    client.checkout()
    ```
  </Tab>
</Tabs>
