What is Git and Github

1 minute read
0

 


To understand Git first we have to know about the Version control system(VCS).
                here first you can see a little about VCS. Then You can understand the journey
                of Git and Github.

           Git:- 

Git is a distributed version control system that allows developers to track changes to their code over time. With Git, developers can create branches to work on new features or fixes, merge those changes back into a main branch, and roll back to earlier versions of the code if needed. Git is free and open-source software that can be used on both Windows and Unix-based operating systems.

            

        Github:-- 

GitHub, on the other hand, is a web-based platform that provides hosting for Git repositories. GitHub makes it easy for developers to collaborate on code, track issues, and bugs, and manage project milestones. It also provides tools for code review and continuous integration and deployment.


 Next, we set up git on our laptops.

To Top