šš²š©šš¬ šØš ššš«š¬š¢šØš§ ššØš§šš«šØš„ šš²š¬ššš¦š¬:
Megha Sharma
Posted on October 6, 2024
1. ššØššš„ ššš«š¬š¢šØš§ ššØš§šš«šØš„ šš²š¬ššš¦š¬
A local version control system is a local database located on your local computer, in which every file change is stored as a patch. Every patch set contains only the changes made to the file since its last version. In order to see what the file looked like at any given moment, it is necessary to add up all the relevant patches to the file in order until that given moment.
The main problem with this is that everything is stored locally. If anything were to happen to the local database, all the patches would be lost. If anything were to happen to a single version, all the changes made after that version would be lost.
2. ššš§šš«šš„š¢š³šš ššš«š¬š¢šØš§ ššØš§šš«šØš„ šš²š¬ššš¦ (šššš)
A Centralized Version Control System (CVCS) is a type of version control system where there is a single, centralized repository that stores the entire version history of a project. In a CVCS, each user checks out a working copy of the files from this central repository to make modifications. After making changes, the user then commits those changes back to the central repository.
šš±šš¦š©š„šš¬ šØš šššš:
šš®ššÆšš«š¬š¢šØš§ (ššš): Subversion is a widely used CVCS that tracks changes to files and directories over time.
3. šš¢š¬šš«š¢šš®ššš ššš«š¬š¢šØš§ ššØš§šš«šØš„ šš²š¬ššš¦ (šššš)
A Distributed Version Control System (DVCS) is a type of version control system where every developer working on a project has a complete copy of the repository, including its entire version history, on their local machine. Unlike Centralized Version Control Systems (CVCS), where there is a single central repository, DVCS allows developers to work independently on their local copies and synchronize changes with other repositories.
šš±šš¦š©š„šš¬ šØš šššš:
ā¢ šš¢š: Git is the most widely used distributed version control system. It was created by Linus Torvalds and has become the de facto standard for version control in many open-source and private projects.
ā¢ ššš«šš®š«š¢šš„: Another DVCS, Mercurial is known for its simplicity and ease of use.
Posted on October 6, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.