Initial move of zeek-aux btests and related files to zeek btest dir

This commit is contained in:
Tim Wojtulewicz 2025-08-11 09:47:51 -07:00
parent c05da53275
commit 7887451a66
148 changed files with 0 additions and 0 deletions

16
testing/scripts/zeek-aux/git Executable file
View file

@ -0,0 +1,16 @@
#! /usr/bin/env bash
# Git wrapper script for use during testing.
# Use original path so we find the system's installed git, not this wrapper.
PATH="$ORIGPATH"
# Unsetting the following prevents git from reading ~/.gitconfig,
# including potential githooks.
HOME=
XDG_CONFIG_HOME=
git -c init.defaultBranch=master \
-c protocol.file.allow=always \
-c user.name=zeektest \
-c user.email=zeektest@zeek.org \
"$@"