Skip to content
This repository was archived by the owner on Feb 12, 2020. It is now read-only.

Commit f246a77

Browse files
committed
Remove project ID as a field we're including in the CSV
1 parent ff54b87 commit f246a77

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ for what is required.
1414

1515
Second you must have a CSV file with the following column types, in order:
1616

17-
`"Repo path","Project name","Project path","Namespace Path","Project ID","Wiki","New name","Language","Description"`
17+
`"Repo path","Project name","Project path","Namespace Path","Wiki","New name","Language","Description"`
1818

1919
The column names do not matter. Alternatively you can modify the `$get_repos`
2020
function to suit your data format (recommended).

migrate-repos.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@
6060
$repos[] = [
6161
'path' => $line[0],
6262
'name' => $line[1],
63-
'wiki' => $line[5],
64-
'new_name' => $line[6],
65-
'language' => $line[7],
66-
'description' => $line[8],
63+
'wiki' => $line[4],
64+
'new_name' => $line[5],
65+
'language' => $line[6],
66+
'description' => $line[7],
6767
];
6868
}
6969

0 commit comments

Comments
 (0)