Skip to content

Instantly share code, notes, and snippets.

View michaellperry's full-sized avatar

Michael L Perry michaellperry

View GitHub Profile
@michaellperry
michaellperry / GitAliases.ps1
Last active April 2, 2026 20:29 — forked from trayburn/GitAliases.sh
Tim Rayburn's GIT Aliases
# Git Aliases - Windows (PowerShell)
# Run GitAliases.sh from Git Bash to set up all other aliases.
# This script sets up only the `branches` alias, which requires
# a platform-specific implementation on Windows.
# Create a directory for git helper scripts
$scriptDir = "$HOME\.git-scripts"
New-Item -ItemType Directory -Force -Path $scriptDir | Out-Null
# Write the branches helper script