Created
September 15, 2008 08:19
-
-
Save mindreframer/10823 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
#!/usr/bin/env bash | |
cd ~/Desktop | |
rails braid_test | |
cd braid_test | |
git init | |
touch .gitignore | |
echo "*.log | |
tmp/* | |
*.sqlite3 | |
doc/api/* | |
db/schema.rb | |
*\*~* | |
*.DS_Store | |
._*" |cat > .gitignore | |
git add . | |
git commit -m "initial commit" | |
braid add git://github.com/thoughtbot/shoulda.git -p | |
braid add git://github.com/thoughtbot/factory_girl.git vendor/gems/thoughtbot-factory_girl-1 | |
braid add git://github.com/rails/rails.git vendor/rails | |
cd .. | |
mkdir ~/tmp | |
mkdir ~/tmp/braid/ | |
git clone braid_test ~/tmp/braid/braid_test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment