svn - Is there a git equivalent to clearcase catcr -


my experience of version control systems clearcase and, while it's served purpose well, move free tool. i've read , experimented git & svn , see advantages in commit based approach opposed file based approach clearcase uses.

however, there parts of clearcase miss if there no equivalent in other tools. clearcase distinguish between files written user , files created programs user had written. user written files 'file element versions' , program generated files 'derived object versions'. furthermore dependencies of 'derived object version' determined using clearcase cleartool catcr command.

my question is: there equivalents these files types in git , there equivalent of cleartool catcr command? agree isn't strictly part of version control system, still replicate if moved git.

the cleartool catcr there use metadata (the configuration record or crs) attached derived objects (the .o files), generated clearmake.

this used huge set of c files in order speed compilation , avoid rebuilding everything.

svn , git more focused on version control part , not provided similar mechanism.
plus, nowadays, either compilation quicker anyway (because of increase in memory , cpu , disk speed), or programs developed in other languages offer better compilation experience (or scripted)


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -