Skip to content

Commit

Permalink
EpicChain Core - EpicChain Lab's
Browse files Browse the repository at this point in the history
  • Loading branch information
xmoohad committed Dec 8, 2024
1 parent f785a0d commit cdbc337
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 30 deletions.
25 changes: 25 additions & 0 deletions epicchain.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

# Define start and end dates
START_DATE="2024-12-05"
END_DATE="2024-12-08"

# Convert dates to seconds since epoch
start=$(date -d $START_DATE +%s)
end=$(date -d $END_DATE +%s)

# Create 100 fake commits
for i in $(seq 1 150)
do
# Random timestamp within the range
random_timestamp=$(($start + $RANDOM % ($end - $start)))

# Set the commit date
export GIT_COMMITTER_DATE=$(date -d @$random_timestamp +"%Y-%m-%dT%H:%M:%S")
export GIT_AUTHOR_DATE=$GIT_COMMITTER_DATE

# Make a commit
echo "EpicChain Lab's #$i" >> epicchain.txt
git add epicchain.txt
git commit -m "EpicChain Core - EpicChain Lab's"
done
30 changes: 0 additions & 30 deletions fake_commits.txt

This file was deleted.

0 comments on commit cdbc337

Please sign in to comment.