https://github.com/Kitware/CMake
Revision 3cb7048b521395fdc863dacacb85c6f7f28a1bc7 authored by Brad King on 24 April 2017, 14:55:25 UTC, committed by Brad King on 24 April 2017, 14:55:25 UTC
2 parent s 80362f7 + 627288f
Raw File
Tip revision: 3cb7048b521395fdc863dacacb85c6f7f28a1bc7 authored by Brad King on 24 April 2017, 14:55:25 UTC
Merge branch 'release'
Tip revision: 3cb7048
SetupForDevelopment.sh
#!/usr/bin/env bash

cd "${BASH_SOURCE%/*}/.." &&
Utilities/GitSetup/setup-user && echo &&
Utilities/GitSetup/setup-hooks && echo &&
Utilities/GitSetup/tips

# Rebase master by default
git config rebase.stat true
git config branch.master.rebase true

# Record the version of this setup so Git/pre-commit can check it.
SetupForDevelopment_VERSION=2
git config hooks.SetupForDevelopment ${SetupForDevelopment_VERSION}
back to top