Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions acceptance/script.prepare
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ trace() {
}

git-repo-init() {
if git rev-parse --git-dir > /dev/null 2>&1; then
echo "git-repo-init: already inside a git repository" >&2
return 1
fi
git init -qb main
git config core.autocrlf false
git config user.name "Tester"
Expand Down
Loading