diff options
author | Deepak Kannan <kannan.deepak@gmail.com> | 2012-08-27 15:32:14 +0530 |
---|---|---|
committer | Deepak Kannan <kannan.deepak@gmail.com> | 2012-08-27 15:32:14 +0530 |
commit | 52b3c7d70636536371f5ed5f8e255aa1d6bce1e9 (patch) | |
tree | c934c29a1a5ddef08a86278d3bbf0d1702458449 /guides | |
parent | 0c6890afe236df8c865f946c2525d8d7d4cfa7be (diff) | |
download | rails-52b3c7d70636536371f5ed5f8e255aa1d6bce1e9.tar.gz rails-52b3c7d70636536371f5ed5f8e255aa1d6bce1e9.tar.bz2 rails-52b3c7d70636536371f5ed5f8e255aa1d6bce1e9.zip |
Minor update for usage of git command
after running, git add .
do not need -a option to git commit
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/rails_application_templates.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_application_templates.textile b/guides/source/rails_application_templates.textile index f50ced3307..d6a2465d1e 100644 --- a/guides/source/rails_application_templates.textile +++ b/guides/source/rails_application_templates.textile @@ -38,7 +38,7 @@ rake("db:migrate") git :init git :add => "." -git :commit => "-a -m 'Initial commit'" +git :commit => "-m 'Initial commit'" </ruby> The following sections outlines the primary methods provided by the API: |