summaryrefslogtreecommitdiff
path: root/.github/workflows/setup_git.ps1
blob: 836b7f8a2c73dbe5c3f860ee2937d606cdedec45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# (c) 2022 Lawrence Livermore National Laboratory

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
}