Skip to content
Snippets Groups Projects
Commit c0f6ffe9 authored by dannylongeuay's avatar dannylongeuay Committed by Christoph Witzko
Browse files

fix(*): :bug: set temp git user name and email

parent a8e012b0
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,10 @@ curl -u 'test:test' -XPOST -H 'Content-Type: application/json' -d '{"name":"no_f ...@@ -24,6 +24,10 @@ curl -u 'test:test' -XPOST -H 'Content-Type: application/json' -d '{"name":"no_f
echo "populating no_ff_merge repo..." echo "populating no_ff_merge repo..."
tmpdir=$(mktemp -d 2>/dev/null || mktemp -d -t 'tmpdir') tmpdir=$(mktemp -d 2>/dev/null || mktemp -d -t 'tmpdir')
cd $tmpdir cd $tmpdir
export GIT_COMMITTER_NAME=test
export GIT_COMMITTER_EMAIL=test@test.com
export GIT_AUTHOR_NAME=test
export GIT_AUTHOR_EMAIL=test@test.com
git init --initial-branch=master git init --initial-branch=master
git commit -m "feat: initial commit" --allow-empty git commit -m "feat: initial commit" --allow-empty
git tag v1.0.0 git tag v1.0.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment