DEV Community

VIDHYA VARSHINI
VIDHYA VARSHINI

Posted on

Day 4 of Full Stack Learning

What is GIT :
Git is a decentralized version control system that assists developers in monitoring modifications in their code base throughout software development.
Remote repository: It is a version of a project which is hosted on the internet or other network. Here the code can e shared with others and can do the work.

How to create a group and create project inside the group :

  1. To start creating a project, click on the (+) icon in the gitlab website and create new group.
  2. Then after selecting the group it will show two options like "create group" and "import group". In this we can choose "create group".
  3. After selecting the group, we can give a name for the group.
  4. The visibility level should be given public where all the members can see the group in the project. This also has an option as private which depends on the owner's wish.
  5. Then it will be asking as "Who will be using this". Give it as Just me or My comapany and team.
  6. At last it will ask like what will you use this group for. There some options will be available and any one can be selected. Now a group has been created.
  7. Then for creating a project, an option called new project will be available at the right side top. There we can select create blank project.
  8. After this give a title for the project and make the visibility level as public and click create project.
  9. To add members in a specific group, click on manage, members and invite members.

How to bring a project from gitlab to laptop:
To bring a project from gitlab to desktop files, first we need to copy the project. To do this, we can use git clone which clones the project and int desktop files.
In the right side there will be two options available below clone. Click the option Clone with HTTPS. Now copy the url and open it in terminal and give as git clone and enter the url. Then the project will be saved to the desktop files.

Top comments (0)