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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
74e53f6a
Commit
74e53f6a
authored
Oct 27, 2019
by
Marcel Amirault
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add last redirect for workflow.md
parent
d14c89c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
31 deletions
+5
-31
doc/workflow/README.md
doc/workflow/README.md
+1
-1
doc/workflow/workflow.md
doc/workflow/workflow.md
+4
-30
No files found.
doc/workflow/README.md
View file @
74e53f6a
...
...
@@ -7,7 +7,7 @@ comments: false
-
[
Automatic issue closing
](
../user/project/issues/managing_issues.md#closing-issues-automatically
)
-
[
Cycle Analytics
](
../user/project/cycle_analytics.md
)
-
[
Description templates
](
../user/project/description_templates.md
)
-
[
Feature branch workflow
](
workflow.md
)
-
[
Feature branch workflow
](
../gitlab-basics/feature_branch_
workflow.md
)
-
[
Groups
](
../user/group/index.md
)
-
Issues - The GitLab Issue Tracker is an advanced and complete tool for
tracking the evolution of a new idea or the process of solving a problem.
...
...
doc/workflow/workflow.md
View file @
74e53f6a
# Feature branch workflow
---
redirect_to
:
'
../gitlab-basics/feature_branch_workflow.md'
---
1.
Clone project:
```
bash
git clone git@example.com:project-name.git
```
1.
Create branch with your feature:
```
bash
git checkout
-b
$feature_name
```
1.
Write code. Commit changes:
```
bash
git commit
-am
"My feature is ready"
```
1.
Push your branch to GitLab:
```
bash
git push origin
$feature_name
```
1.
Review your code on commits page.
1.
Create a merge request.
1.
Your team lead will review the code
&
merge it to the main branch.
This document was moved to
[
another location
](
../gitlab-basics/feature_branch_workflow.md
)
.
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