Technical Blog
Created By Sagar Rathi
Date: 10/10/2014
What are the benefits of version control?
- It provides one code for an entire team to use; everybody operates version'.
- Changes are orderly and avoid overwriting , saving development time.
- The ability to track changes and makes it easier to find the right person whom made changes and when.
- A list of exact changes made can be generated quickly and easily, making it easier to advise users of the information on how it has changed from version to version.
- It is easy to 'roll back' to an earlier version of the information, if a serious mistake was made during a change.
How does git help you keep track of changes?
Git describes the last modification to each line of a file, which generally displays the revision, author and time. This is helpful, for example, in tracking down when a feature was added, or which commit led to a particular bug.
Let dive into coding and developing ourself!!! Happy Coding
Why use GitHub to store your code?
Following reasone one should store code at GitHub
- Having greater choice of version control.
- Can easly collaborating code with team and avoid Overwriting of code.
- Easy Tracking of changes made to file by whom and when.
- Rollback to previous version in bad code sitution.
- Can create private repositories as wanted.


