Skip to content

Commit e81bf48

Browse files
authored
Merge pull request #25698 from github/repo-sync
repo sync
2 parents a4d65df + 8b2cbfc commit e81bf48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To follow these steps, you must use a macOS or Linux system and have the followi
3434
1. To get a list of authors in your Subversion project and store the list in `authors.txt`, run the following script:
3535

3636
```shell{:copy}
37-
svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print "$2 = $2\" }' | sort | uniq > authors.txt
37+
svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2" = "$2 }' | sed 's/^[ \t]*//' | sort | uniq > authors.txt
3838
```
3939
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:
4040

0 commit comments

Comments
 (0)