Created
December 30, 2014 05:58
-
-
Save ubermuda/2ecd63d176a2ebb94640 to your computer and use it in GitHub Desktop.
Weapon of Mass Gitification
This file contains hidden or 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
| for i in *; do | |
| cd $i | |
| git init | |
| git add -A | |
| git commit -m "initial commit" | |
| git remote add origin git@github.com:ubermuda/docker-$i | |
| git push -u origin master | |
| cd - | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
💣