diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-05-02 19:52:39 (GMT) |
---|---|---|
committer | Jordan Henderson <jhenderson@hdfgroup.org> | 2023-05-03 18:26:57 (GMT) |
commit | c75b4af1a2630ace445da1ec661191601583f79a (patch) | |
tree | a345b94dc09dd1ea1c38c1136a133b00939ba395 /test/API/driver/kwsys/SetupForDevelopment.sh | |
parent | 75d64819b050bb30b2a2751d9ba55651f9a1af79 (diff) | |
download | hdf5-c75b4af1a2630ace445da1ec661191601583f79a.zip hdf5-c75b4af1a2630ace445da1ec661191601583f79a.tar.gz hdf5-c75b4af1a2630ace445da1ec661191601583f79a.tar.bz2 |
Add initial version of HDF5 API tests (#2877)
Diffstat (limited to 'test/API/driver/kwsys/SetupForDevelopment.sh')
-rw-r--r-- | test/API/driver/kwsys/SetupForDevelopment.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/API/driver/kwsys/SetupForDevelopment.sh b/test/API/driver/kwsys/SetupForDevelopment.sh new file mode 100644 index 0000000..c3a2b16 --- /dev/null +++ b/test/API/driver/kwsys/SetupForDevelopment.sh @@ -0,0 +1,20 @@ +#!/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} |