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

# Move a Project between deployments

If you have a project on a deployment, such as a Trial deployment, and want to move it to a deployment, such as a Production deployment, you can use the CLI.

<Warning>
  This process only moves the latest files. It doesn’t move the history and revisions.
</Warning>

For more information about the CLI, see [Install the Domino Client (CLI)](/6.3/reference/cli/install-the-cli).

## Prerequisites

You must have the latest local copy of your project on your workstation. If you don’t have a local copy of the project, review the [Domino CLI Reference](/6.3/reference/cli/cli-reference#get-a-project-from-the-server-onto-your-computer-for-the-first-time) to get it.

## Move the Project between deployments

1. Go to the project on your local system that you’d like to migrate:

   ```shell theme={null}
   cd <your-project>
   ```

2. `.domino` is what identifies it as a domino project.

   To remove this (UNIX):

   ```shell theme={null}
   rm -rf .domino
   ```

   To remove this (Windows):

   ```shell theme={null}
   rmdir /s/q .domino and del .domino*
   ```

3. Log into the target deployment, initialize, and upload your project:

   ```shell theme={null}
   domino login <target URL>
   ```

   ```shell theme={null}
   domino init
   ```

   ```shell theme={null}
   domino upload
   ```

4. Log into the new Domino system where your project is hosted and verify the access and collaboration settings are correct. You might have to update the access and collaboration settings because they do not transfer with the project.
