Skip to content

Commit 87c3c4d

Browse files
committed
Remove pagination limitation from README
1 parent 2c7d5c4 commit 87c3c4d

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Execute the following to backup all git repositories of a GitHub user into the s
1818
### Backup all git repositores of a organisation
1919
Execute the following to backup all git repositories of a GitHub organisation into the subdirectory `./YYYY-MM-DD/`.
2020
```PowerShell
21-
.\backup_github_repositories.ps1 -userName "user" -userSecret "password" -organisationName "organsiation"
21+
.\backup_github_repositories.ps1 -userName "user" -userSecret "password" -organisationName "organisation"
2222
```
2323

2424
### Backup all git repositories of a user into a specific directory
@@ -32,6 +32,3 @@ Execute the following command to get detailed help.
3232
```PowerShell
3333
Get-Help .\backup_github_repositories.ps1 -detailed
3434
```
35-
36-
## Known Limitations
37-
The script does not yet support pagination of the GitHub repositories API: The maximum number of supported repositories is currently 100.

backup_github_repositories.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ function Get-TotalRepositoriesSizeInMegabytes([object] $repositories) {
107107
$([math]::Round($totalSizeInKilobytes/1024))
108108
}
109109

110-
111110
# Measure the execution time of the backup script.
112111
$stopwatch = [System.Diagnostics.Stopwatch]::startNew()
113112

0 commit comments

Comments
 (0)