Created
June 4, 2019 18:42
-
-
Save harsh183/fe8ad958cfef62cda5915991df4d76ee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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