12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- param (
- [Parameter(Position=0, Mandatory=$false)]
- [ValidateSet("t", "u", "d")]
- [string]$option
- )
- $currentDir = Get-Location
- $targetDir = "components\wifi-manager\webapp"
- $distDir = "$targetDir\dist"
- $fsFiles = Get-ChildItem -Recurse $distDir -File | ForEach-Object {
- $_.FullName.Substring($currentDir.Path.Length + 1).Replace("\", "/")
- }
- $additionalFiles = @("webpack.c", "webpack.h", "webapp.cmake")
- $additionalFilesFormatted = @()
- Get-ChildItem $targetDir -File | ForEach-Object {
- if ($additionalFiles -contains $_.Name) {
- $formatted = $_.FullName.Substring($currentDir.Path.Length + 1).Replace("\", "/")
- $additionalFilesFormatted += $formatted
- Write-Host "Found $formatted"
- }
- }
- $indexFiles = git ls-files -s $distDir | ForEach-Object {
- ($_ -split "\s+")[3]
- }
- $allFiles = $fsFiles + $additionalFilesFormatted + $indexFiles | Sort-Object -Unique
- $allFiles | ForEach-Object {
- $relativePath = $_
- $isInIndex = $indexFiles -contains $relativePath
- if ($null -eq $option) {
- $gitStatus = & git status --porcelain -- $relativePath
- if ($gitStatus) {
- $status = ($gitStatus -split "\s")[0]
- Write-Host "$relativePath has Git status: $status"
- } else {
- Write-Host "$relativePath is not tracked"
- }
- }
- elseif ($isInIndex) {
- if ($option -eq "d") {
- $resetResult = & git reset -- $relativePath 2>&1
- if ($resetResult -match 'error:') {
- Write-Host "Error resetting ${relativePath}: $resetResult"
- continue
- }
- $checkoutResult = & git checkout -- $relativePath 2>&1
- if ($checkoutResult -match 'error:') {
- Write-Host "Error checking out ${relativePath}: $checkoutResult"
- continue
- }
- Write-Host "Discarded changes in $relativePath"
- }
-
- }
-
-
-
-
-
-
-
-
-
- else {
- if ($option -eq "t") {
- git add $relativePath
- git update-index --no-skip-worktree $relativePath
- Write-Host "Started tracking changes in $relativePath"
- } else {
- Write-Host "File $relativePath is not tracked."
- }
- }
- }
|