GitLab

GitLab codes

GitLab, GitLab Installation

Install GitLab

This page is the first step for GitLab Step 1: Install Git 1-For Linux (Ubuntu/Debian-based)sudo apt update && sudo apt install git -y 1-For macOSbrew install git # If you don’t have Homebrew, install it first: /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh) 2-Once installed, check the version to confirm:git –version Step 2: Configure Gitgit config –global

Codes, GitLab

GitLab CLI Commands

In GITLAB CLI (From local terminal) • for create a new branch : – git checkout -b • for delete an existing branch in local : -git branch -d • for delete an existing branch in REMOTE : git push origin –delete “branch name” See Branches Create a Branch Delete a Branch Switch Branches Synchronize Branches

Scroll to Top