-
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: refactor tests, get everything working, remove
cb()
form
- Loading branch information
Your Name
committed
Jun 17, 2024
1 parent
f6d218f
commit 8e2d0a1
Showing
3 changed files
with
169 additions
and
216 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
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ 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} | ||
|
@@ -47,14 +48,14 @@ git checkout -b new-branch | |
touch new-file | ||
git add new-file | ||
git commit -m "Added new file on new branch" | ||
git checkout master | ||
git checkout main | ||
|
||
# Merge commit | ||
git checkout -b new-merge-branch | ||
touch foo | ||
git add foo | ||
git commit -m "Commit to be merged" | ||
git checkout master | ||
git checkout main | ||
git merge --no-edit --no-ff new-merge-branch | ||
git branch -d new-merge-branch | ||
|
||
|
Oops, something went wrong.