Git Introduction for Beginners

Let's talk about Git and what this is all about. First we need to know what is Git.

Git is simply a version source control system for your files to tracked changes and can be located online and also it will allow to share this files from other people. Meaning to say, by using Git you allow other to edit your files at the same time without altering your own local file. Take a look at the diagram below:


Remote is where your files are uploaded.
Your local is currently your local machine.
Other local is currently others local machine or other developer. This can be many.

The scenario is this. You upload your files (Your local) in Remote (Online or any server) then you share your link to others so they can download it in their local machine (Other local). Now you have both same copy of your files or code, you can start developing at the same time without altering others files even same files.

Git simply means that you can coordinate task with other people event it is the same files.

Comments