What is Git.
Git is a mature, actively maintained open source project originally developed in 2005 by Linus Torvalds, Git is a free and open source distributed version control system. All the users are connected with one Global server.
Git is a free and open source distributed version control system. version control system used to handle small to very large projects efficiently. Git is used to tracking changes in the source code, enabling multiple developers to work together on non-linear development. Git is to allow teams to add (and merge) code at the same time to the same Project. Linus Torvalds created Git in 2005 for the development of the Linux kernel. Git is an example of a DVCS (hence Distributed Version Control System).
What is Version Control
Version control, also known as source control, is the practice of tracking and managing changes to software code. Version control systems are a category of software tools that helps in recording changes made to files by keeping a track of modifications done in the code. Multiple people can work simultaneously on a single project. Everyone works on and edits their own copy of the files and it is up to them when they wish to share the changes made by them with the rest of the team. Here are a few of the most popular types of VCS: Git, Beanstalk, CVS(Concurrent Versions System)
Centralized Version Control Systems
Centralized version control systems contain just one server globally and every user needs to commit to reflecting one’s changes in the server. It is possible for others to see your changes by updating. Centralized version control systems all connect with the global Server. also known as team foundation server. Centralized version control systems server is offline then not connect and not send the changes together.