Skip to content

Instantly share code, notes, and snippets.

@harsh183
Created June 4, 2019 18:42
Show Gist options
  • Save harsh183/fe8ad958cfef62cda5915991df4d76ee to your computer and use it in GitHub Desktop.
Save harsh183/fe8ad958cfef62cda5915991df4d76ee to your computer and use it in GitHub Desktop.
#!/bin/bash
# This script is my standard create a new experiment for my new idea/side project/whatever that I normally seem to do. I can change this if I like as I move along.
set -ex
mkdir ~/Experiments/$1
cd ~/Experiments/$1
echo "# README" > README.md
echo "# TODO" > TODO.md
git init
git add README.md TODO.md
git commit -m 'Initalize repository'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment