DEV Community

Hayes vincent
Hayes vincent

Posted on • Edited on

Day 3 payilagam(Install gitlab)

*INTRODUCTION *
Github is used to share data to all my team member to access the code and folder and its used to collaborating code with others ,the team can work same code at time

key features:
-push a data to the folder
-Pull Requests – suggest code changes
-Issues – report bugs or request features
-Forks – copy someone else’s repo to modify it independently
-Code Reviews – comment on proposed changes

*Install git in linux:
*

open the linux terminal to a code
Step 1: Update package index
sudo apt update

Step 2: Install Git
sudo apt install git

Step 3: Verify Installation
git --version

Step 4 (Optional but Recommended): Configure Git
git config --global user.name "Your Name"
git config --global user.email "you@example.com"

To check your config:
git config --list

Today i learn how to install git in linux mint and how to save the data in gitlab and how collaborating my data and folder to my team mates

Top comments (0)