2013-11-06 10:13:21 -05:00
|
|
|
= render "home_panel"
|
2012-09-04 12:05:08 -04:00
|
|
|
|
2014-03-12 13:25:48 -04:00
|
|
|
%div.git-empty
|
|
|
|
%fieldset
|
|
|
|
%legend Git global setup:
|
|
|
|
%pre.dark
|
|
|
|
:preserve
|
|
|
|
git config --global user.name "#{git_user_name}"
|
|
|
|
git config --global user.email "#{git_user_email}"
|
2012-01-17 18:19:57 -05:00
|
|
|
|
2014-03-12 13:25:48 -04:00
|
|
|
%fieldset
|
|
|
|
%legend Create Repository
|
|
|
|
%pre.dark
|
|
|
|
:preserve
|
|
|
|
mkdir #{@project.path}
|
|
|
|
cd #{@project.path}
|
|
|
|
git init
|
|
|
|
touch README
|
|
|
|
git add README
|
|
|
|
git commit -m 'first commit'
|
|
|
|
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')}
|
|
|
|
git push -u origin master
|
2012-01-17 18:19:57 -05:00
|
|
|
|
2014-03-12 13:25:48 -04:00
|
|
|
%fieldset
|
|
|
|
%legend Existing Git Repo?
|
|
|
|
%pre.dark
|
|
|
|
:preserve
|
|
|
|
cd existing_git_repo
|
|
|
|
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')}
|
|
|
|
git push -u origin master
|
2013-08-12 11:21:47 -04:00
|
|
|
|
2014-03-12 13:25:48 -04:00
|
|
|
- if can? current_user, :remove_project, @project
|
|
|
|
.prepend-top-20
|
|
|
|
= link_to 'Remove project', @project, data: { confirm: remove_project_message(@project)}, method: :delete, class: "btn btn-remove pull-right"
|