Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove git commit #82

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions lib/suspenders/app_builder.rb
Expand Up @@ -134,8 +134,6 @@ def gitignore_files


def init_git def init_git
run "git init" run "git init"
run "git add -A ."
run "git commit -m 'Initial commit - suspended project'"
end end


def create_heroku_apps def create_heroku_apps
Expand Down
2 changes: 1 addition & 1 deletion lib/suspenders/generators/app_generator.rb
Expand Up @@ -117,7 +117,7 @@ def setup_stylesheets
end end


def setup_git def setup_git
say "Initializing git and initial commit" say "Initializing git"
invoke :setup_gitignore invoke :setup_gitignore
invoke :init_git invoke :init_git
end end
Expand Down