Skip to content

Instantly share code, notes, and snippets.

@radleta
Created November 1, 2019 12:31
Show Gist options
  • Save radleta/c9a076e04302af431ab6583f1465b783 to your computer and use it in GitHub Desktop.
Save radleta/c9a076e04302af431ab6583f1465b783 to your computer and use it in GitHub Desktop.
Git: Iterate through all the *.rej files and resolve them using Notepad++
$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