diff --git a/content/billing/managing-your-billing/about-the-billing-cycle.md b/content/billing/managing-your-billing/about-the-billing-cycle.md index 4c538244aa3b..e9149abf4250 100644 --- a/content/billing/managing-your-billing/about-the-billing-cycle.md +++ b/content/billing/managing-your-billing/about-the-billing-cycle.md @@ -8,6 +8,7 @@ redirect_from: - /billing/using-the-billing-platform/viewing-your-subscriptions-and-billing-date - /billing/using-the-billing-platform/changing-the-duration-of-your-billing-cycle - /billing/using-the-new-billing-platform/viewing-your-subscriptions-and-billing-date + - /billing/using-the-new-billing-platform/about-the-billing-cycle type: overview topics: - Enterprise diff --git a/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md b/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md index 27a00ee47272..552aead68959 100644 --- a/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md +++ b/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md @@ -33,7 +33,7 @@ To follow these steps, you must use a macOS or Linux system and have the followi 1. To get a list of authors in your Subversion project and store the list in `authors.txt`, run the following script: ```shell copy - svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2" = "$2 }' | sed 's/^[ \t]*//' | sort | uniq > authors.txt + svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2" = "$2 }' | sed -E 's/^ *//' | sort | uniq > authors.txt ``` 1. Update your `authors.txt` file, mapping the author name used in the Subversion repository to the name you want to use in your Git repository, with the following format: