Back

如何从现有项目中提取出新项目(how to extract new project from existing one )

发布时间: 2013-11-23 07:02:00

步骤非常简单: (quite simple if following the steps below: )

1. $ copy <old_project> <new_project> -r         。  把老项目复制一份。(copy the old project ) 

2. 把无用的文件从老项目中删除!   ( remove redundant files from the new_project.     )

实践证明: 复制老项目,删除无用文件 这个步骤是最省时省力的! 绝对不要 根据现有项目,摘取 功能点,然后再写新项目。 累死

( this is my best practise, never & ever try to extract the functions from old project and then re-implement them in a new project ( or copy the files to the new project ) ) 

Back