Skip to content

Commit

Permalink
chore: move the git config to above git repo creation
Browse files Browse the repository at this point in the history
  • Loading branch information
domharrington committed Jun 17, 2024
1 parent 7c385cb commit 70fa321
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/create-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ REPO="test-repo.git"
echo $REPO
mkdir $REPO
cd $REPO
git config --local user.email "[email protected]"
git config --local user.name "Your Name"
git config --local init.defaultbranch main
git init --bare
cd ..
git clone -l $REPO test-repo-clone
cd test-repo-clone
git config --local user.email "[email protected]"
git config --local user.name "Your Name"
git config --local init.defaultbranch main

# Add
for i in {1..16}
Expand Down

0 comments on commit 70fa321

Please sign in to comment.