Created
November 1, 2019 12:31
-
-
Save radleta/c9a076e04302af431ab6583f1465b783 to your computer and use it in GitHub Desktop.
Git: Iterate through all the *.rej files and resolve them using Notepad++
This file contains 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
$npp = "C:\Program Files\Notepad++\notepad++.exe" | |
# env to redirect git output | |
$env:GIT_REDIRECT_STDERR = '2>&1' | |
git status --short | ForEach-Object { | |
# break the line into its parts | |
$line = $_.Trim() | |
$separator = $line.IndexOf(" ") | |
$status = $line.SubString(0, $separator) | |
$file = $line.SubString($separator+1) | |
# look for rejects | |
if ($file.EndsWith(".rej")) { | |
$prm = $file, $file.Replace(".rej", "") | |
& $npp $prm | Out-Null | |
#Write-host "Would you like to remove the reject? Y/[N]" -ForegroundColor Yellow | |
$Readhost = Read-Host "Would you like to remove $($file)? Y/[N] " | |
Switch ($ReadHost) | |
{ | |
Y { Write-host "Yes, Deleting $($file)"; Remove-Item $file; } | |
N { Write-Host "No, Skipped $($file)"; } | |
Default { Write-Host "Default, Skip PublishSettings"; } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment