spack/.github/workflows/bin/setup_git.ps1
2025-01-02 15:40:28 +01:00

9 lines
224 B
PowerShell

git config --global user.email "spack@example.com"
git config --global user.name "Test User"
git config --global core.longpaths true
if ($(git branch --show-current) -ne "develop")
{
git branch develop origin/develop
}