Skip to content

Instantly share code, notes, and snippets.

@kritultrathod
kritultrathod / Code Churn for Git Repositories.ps1
Last active January 5, 2026 08:03
Code Churn for Git Repositories
param(
[string]$RepoPath = ".",
[string]$AuthorCsv = "churn_by_author.csv",
[string]$FileCsv = "churn_by_file.csv",
[string]$JsonOutput = "churn_dashboard.json",
[string[]]$ExcludeFolders = @("bin/", "obj/", "node_modules/", "dist/", "packages/", "out/")
)
Set-Location $RepoPath
@kritultrathod
kritultrathod / AZURE: Querying Azure DevOps for PR Details.ps1
Last active January 5, 2026 08:03
AZURE: Querying Azure DevOps for PR Details
# ============================
# CONFIG
# ============================
$Org = "your-org"
$Project = "your-project"
$RepoId = "your-repo-id"
$PAT = "your-personal-access-token"
# Filters (optional)
$FilterCreatedBy = "" # e.g. "John Doe"