WELCOME TO SKYNET
Git (/git/) is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development.
1
Version control: Git allows you to track changes to your files and collaborate with others on a project by keeping a history of all revisions and allowing multiple people to work on the same files simultaneously.
2
Branching: Git allows you to create multiple branches of your project, allowing you to experiment with new features or bug fixes without affecting the main version of your code.
3
Merging: Git allows you to merge multiple branches together, allowing you to combine the changes from different branches and resolve conflicts.
4
Remote repository: Git allows you to store your code on a remote server, such as GitHub, allowing you to easily share your code with others and collaborate on projects remotely.