https://github.com/Kitware/CMake
Revision 033d4f37a7a31c640294924f732d0f735bdcacbc authored by Kitware Robot on 01 May 2017, 04:01:03 UTC, committed by Kitware Robot on 01 May 2017, 04:01:03 UTC
1 parent 7382523
Raw File
Tip revision: 033d4f37a7a31c640294924f732d0f735bdcacbc authored by Kitware Robot on 01 May 2017, 04:01:03 UTC
CMake Nightly Date Stamp
Tip revision: 033d4f3
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