Term for Production Rollback

Posted by trainer on Programmers See other posts from Programmers or by trainer
Published on 2011-06-20T21:47:25Z Indexed on 2011/06/21 0:29 UTC
Read the original article Hit count: 221

The firm I work at keeps a copy of the compiled source code on production.

So basically on our Production server, we have two folders:

ProductionServer\SourceCode\

ProductionServer\SourceCodeRollback\

The Rollback folder always contains one version older code. This is done so that on deployment nights, if something is wrong with the new code, the deployer(who is not familiar with source control software) has the older version to revert back to.

My question is: Is there an official computer science term/nomenclature for the Rollback folder? Or is "Rollback" itself the official term?

© Programmers or respective owner

Related posts about version-control

Related posts about terminology