-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: try and get the build passing
- Loading branch information
Your Name
committed
Jun 17, 2024
1 parent
d59616c
commit 7a98138
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/bin/bash | ||
set -e | ||
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" | ||
|
||
# Add | ||
for i in {1..16} | ||
|