gitlab-org--gitlab-foss/doc/workflow/workflow.md
Marcel Amirault 298252bb6b Fix whitespace in topic, university, workflow docs
Many code blocks are 4spaced, and they render in GitLab
without coloring as a result, even though they are
fenced with a language label. If in a list, other items
will render as being in a code block too, even if not
meant to. This fixes all these issues, and cleans up
minor white space issues in /topic, /university, /update
and /workflow docs.
2019-07-31 10:29:10 +00:00

515 B

Feature branch workflow

  1. Clone project:

    git clone git@example.com:project-name.git
    
  2. Create branch with your feature:

    git checkout -b $feature_name
    
  3. Write code. Commit changes:

    git commit -am "My feature is ready"
    
  4. Push your branch to GitLab:

    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.