gitlab-org--gitlab-foss/doc/gitlab-basics/feature_branch_workflow.md

813 B

stage group info disqus_identifier
Create Source Code To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments https://docs.gitlab.com/ee/workflow/workflow.html

Feature branch workflow (FREE)

  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 reviews the code and merges it to the main branch.