diff options
author | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2014-02-13 11:55:46 +0100 |
---|---|---|
committer | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2014-02-28 19:30:13 +0100 |
commit | 564c37d9b69367fb7384a22edad53c8e75aeb2cb (patch) | |
tree | 8466be03d9e579fb89c26f2d5e4490b6296becae /doc/workflow/workflow.md | |
parent | 049d0cc396669d7b970fc3d23e87eb62b3e57b75 (diff) | |
download | gitlab-ce-564c37d9b69367fb7384a22edad53c8e75aeb2cb.tar.gz |
Moved all the help files to markdown files:
Files moved:
* Workflow
* help/ssh
* help/webhooks
* help/system_hooks
* help/public_access
* help/permissions
Diffstat (limited to 'doc/workflow/workflow.md')
-rw-r--r-- | doc/workflow/workflow.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/workflow/workflow.md b/doc/workflow/workflow.md new file mode 100644 index 00000000000..1c238f74957 --- /dev/null +++ b/doc/workflow/workflow.md @@ -0,0 +1,26 @@ +1. Clone project + + ```bash + git clone git@example.com:project-name.git + ``` +2. Create branch with your feature + + ```bash + git checkout -b $feature_name + ``` + +3. Write code. Comit changes + + ```bash + git commit -am "My feature is ready" + ``` + +4. Push your branch to GitLab + + ```bash + git push origin $feature_name + ``` + +5. Review your code on Commits page +6. Create a merge request +7. Your team lead will review the code & merge it to the main branch |