WHAT IS GIT
GIT is a distributed version control system used for tracking changes in source code
GIT FEATURES
Version control
Branching
Merging
Distributed development
What is GITLAB?
GITLAB is a platform built on GIT for managing code repositories and collaboration
To create a Gitlab group
Go to new Group,Enter group name and set it to public
Create a project under the group by selecting New Project and add a project name.
Add members by navigating to manage > members > Invite Members
To clone a repository
1.Find the Repository URL
Go to your GitLab project on the GitLab website
Click the Clone button
Copy the HTTPS or SSH URL
2.Clone the Repository
Open a terminal
Run the following command, replacing with the URL you copied:
EXAMPLE
git clone https://gitlab.com/username/project-name.git
Top comments (0)