1
0
mirror of synced 2025-12-19 09:57:42 -05:00

Fix the script bug in importing-a-subversion-repository.md (#38552)

Co-authored-by: Sharra-writes <sharra-writes@github.com>
This commit is contained in:
Dima Korobskiy
2025-06-16 13:00:37 -04:00
committed by GitHub
parent 12a0f812fa
commit f1bbd029a3

View File

@@ -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: