Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
611c5a87
Commit
611c5a87
authored
Jan 22, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version up to 2.1. Help page filled with simple workflow
parent
3b91a103
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
83 additions
and
1 deletion
+83
-1
VERSION
VERSION
+1
-1
app/assets/images/help_commit.png
app/assets/images/help_commit.png
+0
-0
app/assets/images/help_merge_request.png
app/assets/images/help_merge_request.png
+0
-0
app/assets/stylesheets/style.scss
app/assets/stylesheets/style.scss
+39
-0
app/views/help/index.html.haml
app/views/help/index.html.haml
+43
-0
No files found.
VERSION
View file @
611c5a87
2.1.0
.pre
2.1.0
app/assets/images/help_commit.png
0 → 100644
View file @
611c5a87
95.7 KB
app/assets/images/help_merge_request.png
0 → 100644
View file @
611c5a87
54.5 KB
app/assets/stylesheets/style.scss
View file @
611c5a87
...
...
@@ -761,3 +761,42 @@ body, button, input, select, textarea {
padding
:
10px
;
}
}
.help_content
{
margin
:
20px
;
margin-top
:
71px
;
h2
{
margin
:
0
;
padding
:
0
;
}
.menu
{
float
:left
;
width
:
20%
;
.active
{
color
:
$active_bd_color
;
}
}
.content
{
float
:right
;
width
:
78%
;
}
.bash
{
@include
round-borders-all
(
4px
);
background
:
#eee
;
padding
:
5px
;
//overflow-x:scroll;
pre
{
padding
:
0
;
line-height
:
2
.0
;
margin
:
0
;
font-family
:
'Courier New'
,
'andale mono'
,
'lucida console'
,
monospace
;
color
:
#333
;
text-align
:left
;
}
}
}
app/views/help/index.html.haml
View file @
611c5a87
-
bash_lexer
=
Pygments
::
Lexer
[
:bash
]
%div
.help_content
%h2
Gitlabhq
%span
.right
v2.1
%hr
%h3
Self Hosted Git Management
%h3
Fast, secure and stable solution based on Ruby on Rails
&
Gitolite.
%hr
.menu
%h3
=
link_to
"Workflow"
,
"#"
,
:class
=>
"active"
.content
%h3
Clone project
.bash
%pre
git clone git@example.com:project-name.git
%h3
Create branch with your feature
.bash
%pre
git checkout -b $feature_name
%h3
Write code. Commit changes
.bash
%pre
git commit -am "My feature is ready"
%h3
Push your branch to gitlabhq
.bash
%pre
git push origin $feature_name
%h3
Review your code
.bash
=
image_tag
"help_commit.png"
,
:width
=>
600
%h3
Open a merge request
.bash
=
image_tag
"help_merge_request.png"
,
:width
=>
600
%h3
Your team lead will review code
&
merge it to main branch
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment