summaryrefslogtreecommitdiffstats
path: root/test/API/driver/kwsys/SetupForDevelopment.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/API/driver/kwsys/SetupForDevelopment.sh')
-rw-r--r--test/API/driver/kwsys/SetupForDevelopment.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/API/driver/kwsys/SetupForDevelopment.sh b/test/API/driver/kwsys/SetupForDevelopment.sh
deleted file mode 100644
index c3a2b16..0000000
--- a/test/API/driver/kwsys/SetupForDevelopment.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-
-cd "${BASH_SOURCE%/*}" &&
-GitSetup/setup-user && echo &&
-GitSetup/setup-hooks && echo &&
-GitSetup/setup-aliases && echo &&
-GitSetup/setup-upstream && echo &&
-GitSetup/tips
-
-# Rebase master by default
-git config rebase.stat true
-git config branch.master.rebase true
-
-# Disable Gerrit hook explicitly so the commit-msg hook will
-# not complain even if some gerrit remotes are still configured.
-git config hooks.GerritId false
-
-# Record the version of this setup so Scripts/pre-commit can check it.
-SetupForDevelopment_VERSION=2
-git config hooks.SetupForDevelopment ${SetupForDevelopment_VERSION}