From 7a023f312188ee18395bdae579ce066c303e8ca8 Mon Sep 17 00:00:00 2001 From: Anouck Date: Wed, 9 Nov 2022 16:33:25 +0100 Subject: [PATCH] :memo: Rework introduction --- docs/src/development/file-transfer.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/development/file-transfer.md b/docs/src/development/file-transfer.md index 012f438b2e..1f91ea100d 100644 --- a/docs/src/development/file-transfer.md +++ b/docs/src/development/file-transfer.md @@ -8,14 +8,14 @@ After your app is built, its file system is read-only. This means that the only way you can edit your app's code is through Git. However, you can transfer files to and from your built app without using Git. +To do so, you need to configure mounts or use an SSH client. -To do so, you need to configure [mounts](../create-apps/app-reference.md#mounts). -Mounts let you set up directories that remain writable after the build is complete. +[Mounts](../create-apps/app-reference.md#mounts) let you set up directories that remain writable after the build is complete. You can then transfer files directly to and from mounts inside your app with a single command via the [Platform.sh CLI](../administration/cli/_index.md). -Alternatively, you can transfer files to and from your built app -using an SSH client such `scp` and `rsync`. +Alternatively, you can transfer files to and from your built app using an SSH client +such as `scp` or `rsync`. ## Transfer files using the CLI