Member-only story
If you are not worked on “clearcase” then you are really a fortunate soul. “ClearCase” is one of the complex repository management software and I always used to face issues due to rebase and other operations to commit code and the errors not able to resolve and some times I used to lose all the local changes as I cannot commit changes locally in ClearCase, unlike git.
When I switched to use Git as repository management software life becomes predictable and easy. It is mainly due to the architectural difference between ClearCase and Git.
ClearCase is centralized while Git is distributed repository management software.
Centralized means all the code(branches, history e.t.c) are in one server and if A need to make changes, then A will download the code from centralized server, make changes and commit it back to server(we cannot commit changes locally, and this is major issue as if you experience any issues while committing code to centralized server, then all your changes will be lost and this happened to me multiple times while using clearcase).Even though SVN and CVS are both centralized version control systems, atleast they are not buggy as clearcase. So not all centralized architecture version control are bad, but they miss some of the main functionalities and ease of development provided by distributed systems.
Distributed means if A needs to make changes to a version of code(like master or branch) he will get whole code history or version of the code and…