Commit 32ca0b8cae4c4c871a0e6fb6add6749e33ec0f46
Exists in
master
and in
4 other branches
Merge branch 'master' of github.com:gitlabhq/gitlabhq
Showing
2 changed files
with
6 additions
and
2 deletions
Show diff stats
README.rdoc
@@ -94,6 +94,10 @@ Install gitosis, edit conf/gitosis.yml & start server | @@ -94,6 +94,10 @@ Install gitosis, edit conf/gitosis.yml & start server | ||
94 | 94 | ||
95 | echo "gem: --no-rdoc --no-ri" > ~/.gemrc | 95 | echo "gem: --no-rdoc --no-ri" > ~/.gemrc |
96 | 96 | ||
97 | +== Community | ||
98 | + | ||
99 | +gitlabhq[https://groups.google.com/forum/?hl=en#!forum/gitlabhq] Google Group | ||
100 | + | ||
97 | == Contribute | 101 | == Contribute |
98 | 102 | ||
99 | We develop project on our private server. | 103 | We develop project on our private server. |
app/views/projects/_form.html.haml
@@ -19,13 +19,13 @@ | @@ -19,13 +19,13 @@ | ||
19 | %tr | 19 | %tr |
20 | %td | 20 | %td |
21 | .left= f.label :path | 21 | .left= f.label :path |
22 | - %cite.right git@yourserver: | 22 | + %cite.right= "git@#{GITOSIS["host"]}:" |
23 | %td | 23 | %td |
24 | = f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record? | 24 | = f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record? |
25 | %tr | 25 | %tr |
26 | %td | 26 | %td |
27 | .left= f.label :code | 27 | .left= f.label :code |
28 | - %cite.right http://yourserver/ | 28 | + %cite.right= "http://#{GITOSIS["host"]}/" |
29 | %td= f.text_field :code, :placeholder => "example" | 29 | %td= f.text_field :code, :placeholder => "example" |
30 | 30 | ||
31 | %tr | 31 | %tr |