Skip to content

Commit

Permalink
Merge pull request #7 from kitsuyui/make-lucky
Browse files Browse the repository at this point in the history
Add script to make lucky commit id.
  • Loading branch information
kitsuyui authored Nov 3, 2022
2 parents 7f97a34 + c10d23f commit 0671a6a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions misc/make-lucky.sh
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

0 comments on commit 0671a6a

Please sign in to comment.