# Deactivate an environment

If you have environments you aren't using, you may want to deactivate them to save resources for what you need.
To deactivate an environment, you need to be an admin for the project or the given environment.

**Note**: 

Your default environment is protected.
It can’t be deactivated through the Console or the CLI.
To change which environment is the default, see how to [rename the default branch](https://fixed.docs.upsun.com/environments/default-environment.md).

Deactivating the project results in the following:

* The environment becomes [inactive](https://fixed.docs.upsun.com/glossary.md#inactive-environment).
  Unless it's reactivated, it's no longer deployed and isn't accessible from the web or via SSH.
* All services running on this environment are deleted.
* All data specific to the environment is deleted.
  If the environment is reactivated, it syncs data from its parent environment.

## Deactivate an environment

To deactivate an environment, follow these steps:

Run the following command:

```bash {}
platform environment:deactivate <ENVIRONMENT_NAME>
```

## Delete the branch

Inactive environments still have branches in Git.
To delete the branch entirely, run the following command:

```bash
git push origin --delete <BRANCH_NAME>
```

## Reactivate an environment

Reactivating an environment [syncs](https://fixed.docs.upsun.com/glossary.md#sync) data from its parent environment.

To reactivate an inactive environment, follow these steps:

Run the following command:

```bash {}
platform environment:activate <ENVIRONMENT_NAME>
```

If you're not using a [source integration](https://fixed.docs.upsun.com/integrations/source.md),
you can also activate an environment when pushing changes to it.
To do so, run the following command:

```bash
git push -o "environment.status=active"
```

Learn more about how to [trigger actions on `push`](https://fixed.docs.upsun.com/environments.md#push-options).

