Method: Wired::AppBuilder#setup_git
- Defined in:
- lib/wired/builders/app_builder.rb
#setup_git ⇒ Object
161 162 163 164 165 166 |
# File 'lib/wired/builders/app_builder.rb', line 161 def setup_git run 'git init' run "git add ." run "git commit -m 'initial commit'" run "git checkout -b develop" end |