Git or GITHUB is a version control system. For example, if you have a file on which you’ve been working on and reworking for a long time, all the versions of it are saved in Git, and you can easily get back to every version.
When working with big projects many programmers can work in single project.
What is it for?
The version control system has the following benefits:
• You have access to all versions of all files in Git repository at any time, it’s almost impossible to lose any part of a code.
• Multiple developers can work on one project at the same time without interfering with each other, and without fear of losing any changes made by a colleague.
In Git, the possibilities of collaborative work are unlimited.

0 Comments
Post a Comment