Updated readme, Roles in progress
This commit is contained in:
parent
37224dc9c1
commit
dac7c44ab3
15 changed files with 165 additions and 67 deletions
38
app/views/help/workflow.html.haml
Normal file
38
app/views/help/workflow.html.haml
Normal file
|
@ -0,0 +1,38 @@
|
|||
- bash_lexer = Pygments::Lexer[:bash]
|
||||
%h3 Workflow
|
||||
%hr
|
||||
|
||||
%ol.help
|
||||
%li
|
||||
%p Clone project
|
||||
.bash
|
||||
%pre
|
||||
git clone git@example.com:project-name.git
|
||||
|
||||
%li
|
||||
%p Create branch with your feature
|
||||
.bash
|
||||
%pre
|
||||
git checkout -b $feature_name
|
||||
|
||||
%li
|
||||
%p Write code. Commit changes
|
||||
.bash
|
||||
%pre
|
||||
git commit -am "My feature is ready"
|
||||
|
||||
%li
|
||||
%p Push your branch to gitlabhq
|
||||
.bash
|
||||
%pre
|
||||
git push origin $feature_name
|
||||
|
||||
%li
|
||||
%p Review your code on Commits page
|
||||
|
||||
%li
|
||||
%p Create a merge request
|
||||
|
||||
%li
|
||||
%p Your team lead will review code & merge it to main branch
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue