Created
November 9, 2011 02:22
push rails project to github
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
fabio@fabio-vbox:~/app_contatos_rails$ git init | |
Initialized empty Git repository in /home/fabio/app_contatos_rails/.git/ | |
fabio@fabio-vbox:~/app_contatos_rails$ git add . | |
fabio@fabio-vbox:~/app_contatos_rails$ git commit -m "Initial commit" | |
[master (root-commit) 76a11c1] Initial commit | |
36 files changed, 1133 insertions(+), 0 deletions(-) | |
create mode 100644 .gitignore | |
create mode 100644 .rvmrc | |
create mode 100644 Gemfile | |
create mode 100644 Gemfile.lock | |
create mode 100644 README | |
create mode 100644 Rakefile | |
create mode 100644 app/assets/images/rails.png | |
create mode 100644 app/assets/javascripts/application.js | |
create mode 100644 app/assets/stylesheets/application.css | |
create mode 100644 app/controllers/application_controller.rb | |
create mode 100644 app/helpers/application_helper.rb | |
create mode 100644 app/mailers/.gitkeep | |
create mode 100644 app/models/.gitkeep | |
create mode 100644 app/views/layouts/application.html.erb | |
create mode 100644 config.ru | |
create mode 100644 config/application.rb | |
create mode 100644 config/boot.rb | |
create mode 100644 config/database.yml | |
create mode 100644 config/environment.rb | |
create mode 100644 config/environments/development.rb | |
create mode 100644 config/environments/production.rb | |
create mode 100644 config/environments/test.rb | |
create mode 100644 config/initializers/backtrace_silencers.rb | |
create mode 100644 config/initializers/inflections.rb | |
create mode 100644 config/initializers/mime_types.rb | |
create mode 100644 config/initializers/secret_token.rb | |
create mode 100644 config/initializers/session_store.rb | |
create mode 100644 config/initializers/wrap_parameters.rb | |
create mode 100644 config/locales/en.yml | |
create mode 100644 config/routes.rb | |
create mode 100644 db/seeds.rb | |
create mode 100644 doc/README_FOR_APP | |
create mode 100644 lib/assets/.gitkeep | |
create mode 100644 lib/tasks/.gitkeep | |
create mode 100644 log/.gitkeep | |
create mode 100644 public/404.html | |
create mode 100644 public/422.html | |
create mode 100644 public/500.html | |
create mode 100644 public/favicon.ico | |
create mode 100644 public/index.html | |
create mode 100644 public/robots.txt | |
create mode 100755 script/rails | |
create mode 100644 vendor/assets/stylesheets/.gitkeep | |
create mode 100644 vendor/plugins/.gitkeep | |
fabio@fabio-vbox:~/app_contatos_rails$ git remote add origin git@github.com:fabiolnm/App-Contatos-Rails.git | |
fabio@fabio-vbox:~/app_contatos_rails$ git push origin master | |
Enter passphrase for key '/home/fabio/.ssh/id_rsa': | |
Counting objects: 60, done. | |
Compressing objects: 100% (44/44), done. | |
Writing objects: 100% (60/60), 24.39 KiB, done. | |
Total 60 (delta 2), reused 0 (delta 0) | |
To git@github.com:fabiolnm/App-Contatos-Rails.git | |
* [new branch] master -> master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment