Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View MattWoelk's full-sized avatar

Matthew Woelk MattWoelk

View GitHub Profile
@MattWoelk
MattWoelk / hh_to_git.sh
Last active August 29, 2015 14:15 — forked from 5sw/hh_to_git.sh
Take a Handmade Hero .zip and make it a git repo, with one commit for each day.
#!/bin/bash
# This script makes a HandmadeHero directory and populates it as a git repo with the supplied .zip file.
# Example: ./hh_to_git.sh handmade_hero_065_source.zip
args=("$@")
if [ ${#args[@]} -ne 1 ]
then
echo "Need one argument: the source zip file."