This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-LostBlobs { | |
| # Create the 'lost' directory if it doesn't exist | |
| $lostDir = "lost" | |
| if (-not (Test-Path $lostDir)) { | |
| New-Item -ItemType Directory -Path $lostDir | Out-Null | |
| } | |
| # Run git fsck and filter for lost blobs | |
| git fsck --lost-found | ForEach-Object { | |
| $line = $_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "3", | |
| "templates": [ | |
| { | |
| "type": 1, | |
| "title": "Registry", | |
| "description": "Docker image registry", | |
| "categories": [ | |
| "Docker" | |
| ], |
OlderNewer