This file contains hidden or 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
| # 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 |