Created
September 3, 2014 17:53
-
-
Save coleww/381669e1a9d0af88e746 to your computer and use it in GitHub Desktop.
still on the efs so will get wiped constantly...but kinda funny :D
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
File.open('TEST.txt', 'w') do |f| | |
f.write 'hello world!' | |
end | |
puts `git init` | |
sleep 5 | |
puts `git status` | |
sleep 5 | |
puts `git add -A` | |
sleep 5 | |
puts `git commit -m 'TEST'` | |
sleep 5 | |
puts `git log` |
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
2014-09-03T17:50:26.497179+00:00 heroku[bot.1]: State changed from starting to up | |
2014-09-03T17:50:31.625562+00:00 app[bot.1]: Initialized empty Git repository in /app/.git/ | |
2014-09-03T17:50:36.631925+00:00 app[bot.1]: # On branch master | |
2014-09-03T17:50:36.631931+00:00 app[bot.1]: # | |
2014-09-03T17:50:36.631932+00:00 app[bot.1]: # Initial commit | |
2014-09-03T17:50:36.631934+00:00 app[bot.1]: # | |
2014-09-03T17:50:36.631935+00:00 app[bot.1]: # Untracked files: | |
2014-09-03T17:50:36.631937+00:00 app[bot.1]: # (use "git add <file>..." to include in what will be committed) | |
2014-09-03T17:50:36.631938+00:00 app[bot.1]: # | |
2014-09-03T17:50:36.631939+00:00 app[bot.1]: # .bundle/ | |
2014-09-03T17:50:36.631940+00:00 app[bot.1]: # .gitignore | |
2014-09-03T17:50:36.631942+00:00 app[bot.1]: # .profile.d/ | |
2014-09-03T17:50:36.631943+00:00 app[bot.1]: # Gemfile | |
2014-09-03T17:50:36.631944+00:00 app[bot.1]: # Gemfile.lock | |
2014-09-03T17:50:36.631945+00:00 app[bot.1]: # Procfile | |
2014-09-03T17:50:36.631946+00:00 app[bot.1]: # README.md | |
2014-09-03T17:50:36.631947+00:00 app[bot.1]: # TEST.txt | |
2014-09-03T17:50:36.631948+00:00 app[bot.1]: # bin/ | |
2014-09-03T17:50:36.631949+00:00 app[bot.1]: # bot.rb | |
2014-09-03T17:50:36.631950+00:00 app[bot.1]: # tmp/ | |
2014-09-03T17:50:36.631952+00:00 app[bot.1]: # vendor/ | |
2014-09-03T17:50:36.631953+00:00 app[bot.1]: nothing added to commit but untracked files present (use "git add" to track) | |
14-09-03T17:50:43.354379+00:00 app[bot.1]: create mode 100644 vendor/ruby-2.0.0/lib/ruby/gems/2.0.0/specifications/default/test-unit-2.0.0.0.gemspec | |
# A WHOLE LOT OF THIS IT BASICALLY COMMITTS RUBY | |
2014-09-03T17:50:43.354380+00:00 app[bot.1]: create mode 100644 vendor/ruby-2.0.0/share/man/man1/erb.1 | |
2014-09-03T17:50:43.354381+00:00 app[bot.1]: create mode 100644 vendor/ruby-2.0.0/share/man/man1/irb.1 | |
2014-09-03T17:50:43.354382+00:00 app[bot.1]: create mode 100644 vendor/ruby-2.0.0/share/man/man1/rake.1 | |
2014-09-03T17:50:43.354383+00:00 app[bot.1]: create mode 100644 vendor/ruby-2.0.0/share/man/man1/ri.1 | |
2014-09-03T17:50:43.354384+00:00 app[bot.1]: create mode 100644 vendor/ruby-2.0.0/share/man/man1/ruby.1 | |
2014-09-03T17:50:48.365983+00:00 app[bot.1]: commit db57f12f442102ff940776e4a27215a960993dd5 | |
2014-09-03T17:50:48.365989+00:00 app[bot.1]: Author: u7970 <u7970@c7ce76ce-46bb-4ac2-b897-c2f851e3a3e0.(none)> | |
2014-09-03T17:50:48.365991+00:00 app[bot.1]: Date: Wed Sep 3 17:50:43 2014 +0000 | |
2014-09-03T17:50:48.365993+00:00 app[bot.1]: | |
2014-09-03T17:50:48.365994+00:00 app[bot.1]: TEST | |
2014-09-03T17:50:49.192341+00:00 heroku[bot.1]: Process exited with status 0 | |
2014-09-03T17:50:49.202255+00:00 heroku[bot.1]: State changed from up to crashed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment