What is GIT, Installing GIT and Few basic commands used in GIT: GIT : * GIT is created by " Linus Torvald " ( the person who created the Linux Kernel) in year 2005 * GIT is a distributed version control system * The difference between a Centralized and Distributed Version control Systems ? In case of Centralized Version Control System there will be only one Centralized server which have all the information , because of one centralized server the data will be at high risk. As the server crashes then all the data stored in server will be crashed which is a high risk to the company. In order to overcome the problem Distributed Version Control System came to existence. Where the data will be available both in local and central repo. In case the central re...
Posts
Showing posts from August, 2020
- Get link
- X
- Other Apps
What is Version Control System? Version Control is the management of changes to documents, computer programs, large websites and other collections of information. These changes are usually termed as "Versions". why version control systems? For suppose, a developer have developed an application according to the client requirement and delivered to them . And after getting through the application, the client may ask for few other features that need to be added to the application. So, again the developer works for that and add the features to the app as per client requirement. Till this everything is going fine! In case if the client feels that first application is better than the modified application and client again requests for the developer to give back the application as the same which developer delivered initially. This will be a rework to developer 😒 So, in this case versions can help out the Deve...