diff --git a/doc/user/project/import/svn.md b/doc/user/project/import/svn.md
index 4673b9c0ed378c78713ebddd5688132d82717dc4..d6bcb0a20180e760239a4e7e6c7efec986f92316 100644
--- a/doc/user/project/import/svn.md
+++ b/doc/user/project/import/svn.md
@@ -10,76 +10,82 @@ info: To determine the technical writer assigned to the Stage/Group associated w
 GitLab uses Git as its version control system. If you're using Subversion (SVN) as your version control system,
 you can migrate to using a Git repository in GitLab using `svn2git`.
 
-## Migrate using `svn2git`
-
-NOTE:
-Any issues with svn2git should be directed to the [relevant project and maintainer](https://github.com/nirvdrum/svn2git).
-Check for existing issues and history for update frequency.
-
-If you are currently using an SVN repository, you can migrate the repository
-to Git and GitLab. We recommend a hard cut over - run the migration command once
-and then have all developers start using the new GitLab repository immediately.
-Otherwise, it's hard to keep changing in sync in both directions. The conversion
-process should be run on a local workstation.
-
-Install `svn2git`. On all systems you can install as a Ruby gem if you already
-have Ruby and Git installed.
-
-```shell
-sudo gem install svn2git
-```
-
-On Debian-based Linux distributions you can install the native packages:
-
-```shell
-sudo apt-get install git-core git-svn ruby
-```
-
-Optionally, prepare an authors file so `svn2git` can map SVN authors to Git authors.
-If you choose not to create the authors file then commits are not attributed
-to the correct GitLab user. Some users may not consider this a big issue while
-others want to ensure they complete this step. If you choose to map authors,
-you must map every author present on changes in the SVN
-repository. If you don't, the conversion fails and you have to update
-the author file accordingly. The following command searches through the
-repository and output a list of authors.
-
-```shell
-svn log --quiet | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/ //g' | sort | uniq
-```
-
-Use the output from the last command to construct the authors file.
-Create a file called `authors.txt` and add one mapping per line.
-
-```plaintext
-janedoe = Jane Doe <janedoe@example.com>
-johndoe = John Doe <johndoe@example.com>
-```
-
-If your SVN repository is in the standard format (trunk, branches, tags,
-not nested) the conversion is simple. For a non-standard repository see
-[svn2git documentation](https://github.com/nirvdrum/svn2git). The following
-command will checkout the repository and do the conversion in the current
-working directory. Be sure to create a new directory for each repository before
-running the `svn2git` command. The conversion process takes some time.
-
-```shell
-svn2git https://svn.example.com/path/to/repo --authors /path/to/authors.txt
-```
-
-If your SVN repository requires a username and password add the
-`--username <username>` and `--password <password>` flags to the above command.
-`svn2git` also supports excluding certain file paths, branches, tags, and so on. See
-[svn2git documentation](https://github.com/nirvdrum/svn2git) or run
-`svn2git --help` for full documentation on all of the available options.
-
-Create a new GitLab project, into which you push your converted code.
-Copy the SSH or HTTP(S) repository URL from the project page. Add the GitLab
-repository as a Git remote and push all the changes. This pushes all commits,
-branches and tags.
-
-```shell
-git remote add origin git@gitlab.com:<group>/<project>.git
-git push --all origin
-git push --tags origin
-```
+You can follow the steps on this page to migrate to Git if your SVN repository:
+
+- Has a standard format (trunk, branches, and tags).
+- Is not nested.
+
+For a non-standard repository see the [`svn2git` documentation](https://github.com/nirvdrum/svn2git).
+
+We recommend a hard cut over from SVN to Git and GitLab. Run the migration command once and then have all users use the
+new GitLab repository immediately.
+
+## Install `svn2git`
+
+Install `svn2git` on a local workstation rather than the GitLab server:
+
+- On all systems you can install as a Ruby gem if you already have Ruby and Git installed:
+
+  ```shell
+  sudo gem install svn2git
+  ```
+
+- On Debian-based Linux distributions you can install the native packages:
+
+  ```shell
+  sudo apt-get install git-core git-svn ruby
+  ```
+
+## Prepare an authors file (recommended)
+
+Prepare an authors file so `svn2git` can map SVN authors to Git authors. If you choose not to create the authors file,
+commits are not attributed to the correct GitLab user.
+
+To map authors, you must map every author present on changes in the SVN repository. If you don't, the
+migration fails and you have to update the author file accordingly.
+
+1. Search through the SVN repository and output a list of authors:
+
+   ```shell
+   svn log --quiet | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/ //g' | sort | uniq
+   ```
+
+1. Use the output from the last command to construct the authors file. Create a file called `authors.txt` and add one
+   mapping per line. For example:
+
+   ```plaintext
+   sidneyjones = Sidney Jones <sidneyjones@example.com>
+   ```
+
+## Migrate SVN repository to Git repository
+
+`svn2git` supports excluding certain file paths, branches, tags, and more. See
+the [`svn2git` documentation](https://github.com/nirvdrum/svn2git) or run `svn2git --help` for full documentation on all of
+the available options.
+
+For each repository to migrate:
+
+1. Create a new directory and change into it.
+1. For repositories that:
+
+   - Don't require a username and password, run:
+
+     ```shell
+     svn2git https://svn.example.com/path/to/repo --authors /path/to/authors.txt
+     ```
+
+   - Do require a username and password, run:
+
+     ```shell
+     svn2git https://svn.example.com/path/to/repo --authors /path/to/authors.txt --username <username> --password <password>
+     ```
+
+1. Create a new GitLab project for your migrated code.
+1. Copy the SSH or HTTP(S) repository URL from the GitLab project page.
+1. Add the GitLab repository as a Git remote and push all the changes. This pushes all commits, branches, and tags.
+
+   ```shell
+   git remote add origin git@gitlab.example.com:<group>/<project>.git
+   git push --all origin
+   git push --tags origin
+   ```