mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 14:30:42 +02:00
Updated check-repo.ps1
This commit is contained in:
parent
b2b539e471
commit
4be557732e
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Checks a Git repository
|
Checks a Git repository
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script verifies the integrity of a local Git repository.
|
This PowerShell script verifies the integrity of a local Git repository and performs maintenance tasks.
|
||||||
.PARAMETER pathToRepo
|
.PARAMETER pathToRepo
|
||||||
Specifies the file path to the local Git repository (current working directory by default)
|
Specifies the file path to the local Git repository (current working directory by default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
@ -12,7 +12,7 @@
|
|||||||
⏳ (3/10) Querying remote URL... git@github.com:fleschutz/PowerShell.git
|
⏳ (3/10) Querying remote URL... git@github.com:fleschutz/PowerShell.git
|
||||||
⏳ (4/10) Querying current branch... main
|
⏳ (4/10) Querying current branch... main
|
||||||
⏳ (5/10) Fetching remote updates... OK
|
⏳ (5/10) Fetching remote updates... OK
|
||||||
⏳ (6/10) Querying latest tag... v0.8 (commit 02171a401d83b01a0cda0af426840b605e617f08)
|
⏳ (6/10) Querying latest tag... v0.8 (at commit 02171a401d83b01a0cda0af426840b605e617f08)
|
||||||
⏳ (7/10) Verifying data integrity...
|
⏳ (7/10) Verifying data integrity...
|
||||||
...
|
...
|
||||||
.LINK
|
.LINK
|
||||||
@ -51,7 +51,7 @@ try {
|
|||||||
Write-Host "⏳ (6/10) Querying latest tag... " -noNewline
|
Write-Host "⏳ (6/10) Querying latest tag... " -noNewline
|
||||||
$latestTagCommitID = (git -C "$FullPath" rev-list --tags --max-count=1)
|
$latestTagCommitID = (git -C "$FullPath" rev-list --tags --max-count=1)
|
||||||
$latestTagName = (git -C "$FullPath" describe --tags $latestTagCommitID)
|
$latestTagName = (git -C "$FullPath" describe --tags $latestTagCommitID)
|
||||||
Write-Host "$latestTagName (commit $latestTagCommitID)"
|
Write-Host "$latestTagName (at commit $latestTagCommitID)"
|
||||||
|
|
||||||
Write-Host "⏳ (7/10) Verifying data integrity..."
|
Write-Host "⏳ (7/10) Verifying data integrity..."
|
||||||
& git -C "$FullPath" fsck
|
& git -C "$FullPath" fsck
|
||||||
|
Loading…
Reference in New Issue
Block a user