DEV Community

SELVAKUMAR R
SELVAKUMAR R

Posted on

Fifth day Java Full Stack Training

In this case we learned about Git Lab , Git

Git Lab

  • Git lab is developed by Sid Sijbrandij and Dmitriy Zaporozhets. Zaporozhets in 2011

  • It is the web based git repository to provide free open source repository and private repository to store the project.

  • Its is fully used by the DevOps user to assign all the task about the project to the user and maintain the code in repository and maintain the code changes.

Git:

  • Git is the version control system it track the changes in the stored file in server

  • Linus Torvalds is the founder of git using linux operating system kernal in 2005

Git commands:

Git clone -> this command is used to create a local copy from the existing repository in the server.

git clone ssh://john@example.com/path/to/my-project.git 
cd my-project 

Enter fullscreen mode Exit fullscreen mode

Top comments (0)