Version Control in the good old days
- Backup is important
% cp -rf project project.1980-01-30
- Starting a new feature
% cp -rf project project.feature-cool % cp -rf project project.works % cp project.works/core.c project.featurecool/
- Let's start over
% rm -rf * # No, wait.. I mean rm -rf project.feature.coolcontinued...