Skip to content

Instantly share code, notes, and snippets.

@denisse-dev
Created August 18, 2018 02:39
Show Gist options
  • Save denisse-dev/2839ae2713b87ab01804f87ad6f88446 to your computer and use it in GitHub Desktop.
Save denisse-dev/2839ae2713b87ab01804f87ad6f88446 to your computer and use it in GitHub Desktop.
Full green contribution bar to GitHub
#!/bin/bash
# Make your contribution bar green with this script, pretend you're an avid developer!
touch numbers
for i in {1..365}
do
echo "$i" >> numbers
git add -A
git commit --date=$"(`date --date="${i} day ago"`)" -am "Commit message number $i"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment