Add and configure developer setup helper scripts

Configure GitSetup scripts for CMake.  Run them from a single
Utilities/SetupForDevelopment.sh script.
This commit is contained in:
Brad King 2012-03-02 13:28:57 -05:00
parent 97e1cc2880
commit d2c3686a08
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,9 @@
[hooks]
url = http://cmake.org/cmake.git
[ssh]
host = cmake.org
key = id_git_cmake
request-url = https://www.kitware.com/Admin/SendPassword.cgi
[stage]
url = git://cmake.org/stage/cmake.git
pushurl = git@cmake.org:stage/cmake.git

View File

@ -0,0 +1,13 @@
#!/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