diff --git a/assets/images/help/organizations/organization-account-transformation-warning.png b/assets/images/help/organizations/organization-account-transformation-warning.png
index fe831e8ad1..ba7f0dfec9 100644
Binary files a/assets/images/help/organizations/organization-account-transformation-warning.png and b/assets/images/help/organizations/organization-account-transformation-warning.png differ
diff --git a/content/admin/enterprise-management/configuring-clustering/evacuating-a-cluster-node.md b/content/admin/enterprise-management/configuring-clustering/evacuating-a-cluster-node.md
index bf76f3c87c..048ad3e7e2 100644
--- a/content/admin/enterprise-management/configuring-clustering/evacuating-a-cluster-node.md
+++ b/content/admin/enterprise-management/configuring-clustering/evacuating-a-cluster-node.md
@@ -18,8 +18,8 @@ If you're taking a node offline that has any data services (like git, pages, or
1. Find the `uuid` of the node in with the `ghe-config`command.
- ```
- $ ghe-config cluster._hostname_.uuid
+ ```shell
+ $ ghe-config cluster.HOSTNAME.uuid
```
2. You'll need to monitor the status of your node while the data is being copied. Ideally, the node shouldn't be taken offline until the copying is complete. To monitor the status of your node, run any of the following commands:
@@ -29,11 +29,11 @@ If you're taking a node offline that has any data services (like git, pages, or
ghe-spokes evac-status
```
For {% data variables.product.prodname_pages %}
- {% raw %}
+
+ ```shell
+ echo "select count(*) from pages_replicas where host = 'pages-server-UUID'" | ghe-dbconsole -y
```
- echo "select count(*) from pages_replicas where host = 'pages-server-'" | ghe-dbconsole -y
- ```
- {% endraw %}
+
For storage
```
ghe-storage evacuation-status
@@ -42,26 +42,25 @@ If you're taking a node offline that has any data services (like git, pages, or
3. After the copying is complete, you can evacuate the storage service. Run any of the following commands:
For Git
- {% raw %}
+
+ ```shell
+ ghe-spokes server evacuate git-server-UUID \'REASON FOR EVACUATION\'
```
- ghe-spokes server evacuate git-server-
- ```
- {% endraw %}
+
For {% data variables.product.prodname_pages %}
- {% raw %}
+
+ ```shell
+ ghe-dpages evacuate pages-server-UUID
```
- ghe-dpages evacuate pages-server-
- ```
- {% endraw %}
+
For storage, take the node offline
- {% raw %}
+
+ ```shell
+ ghe-storage offline storage-server-UUID
```
- ghe-storage offline storage-server-
- ```
- {% endraw %}
+
then evacuate
- {% raw %}
+
+ ```shell
+ ghe-storage evacuate storage-server-UUID
```
- ghe-storage evacuate storage-server-
- ```
- {% endraw %}
diff --git a/content/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings/converting-a-user-into-an-organization.md b/content/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings/converting-a-user-into-an-organization.md
index e276b137e8..f984abbe90 100644
--- a/content/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings/converting-a-user-into-an-organization.md
+++ b/content/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings/converting-a-user-into-an-organization.md
@@ -22,6 +22,7 @@ shortTitle: User into an organization
- An organization **cannot** be converted back to a user.
- The SSH keys, OAuth tokens, job profile, reactions, and associated user information, **will not** be transferred to the organization. This is only true for the user account that's being converted, not any of the user account's collaborators.
- Any commits made with the converted user account **will no longer be linked** to that account. The commits themselves **will** remain intact.
+ - Any forks of private repositories made with the converted user account will be deleted.
{% endwarning %}