https://github.com/Kitware/CMake
Revision a398acd02f316ef6c6932564734e347436d0092a authored by Brad King on 22 July 2015, 12:33:55 UTC, committed by Brad King on 22 July 2015, 12:35:21 UTC
This reverts commit 0e3cfc134cee5b560a636d72231cfcaeac376b85.
Due to VS 2015 RTM being released, additional changes are needed
to CMake 3.3.
1 parent 0e3cfc1
Raw File
Tip revision: a398acd02f316ef6c6932564734e347436d0092a authored by Brad King on 22 July 2015, 12:33:55 UTC
Revert "CMake 3.3.0"
Tip revision: a398acd
SetupForDevelopment.sh
#!/usr/bin/env bash

cd "${BASH_SOURCE%/*}/.." &&
Utilities/GitSetup/setup-user && echo &&
Utilities/GitSetup/setup-hooks && echo &&
Utilities/GitSetup/setup-stage && echo &&
(Utilities/GitSetup/setup-ssh ||
 echo 'Failed to setup SSH.  Run this again to retry.') && echo &&
Utilities/GitSetup/tips

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