-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from kitsuyui/make-lucky
Add script to make lucky commit id.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
# Generate a commit with a lucky number | ||
# Usage: Just execute this script | ||
# ./misc/make-lucky.sh | ||
set -eu | ||
|
||
pattern=777 | ||
|
||
git commit --allow-empty -m 'lucky commit' | ||
# retry commit until it contains the pattern | ||
commit_hash=$(git rev-parse HEAD) | ||
while [[ "$commit_hash" != *"$pattern"* ]]; | ||
do | ||
message="lucky commit (seed: $RANDOM)" | ||
git commit --allow-empty --amend -m "$message" &>/dev/null | ||
commit_hash=$(git rev-parse HEAD) | ||
done |