Remove unsupported option --copy-from (#474)

diff --git a/doc/create.txt b/doc/create.txt
index 9bab849..f83e0f5 100644
--- a/doc/create.txt
+++ b/doc/create.txt
@@ -13,7 +13,6 @@
 Options
 
     --template=<PATH|NPM PACKAGE|GIT URL> ... use a custom template located locally, in NPM, or GitHub.
-    --copy-from|src=<PATH> .................. deprecated, use --template instead.
     --link-to=<PATH> ........................ symlink to custom www assets without creating a copy.
     
 Example
diff --git a/doc/readme.md b/doc/readme.md
index d4456aa..33ba5fd 100644
--- a/doc/readme.md
+++ b/doc/readme.md
@@ -118,7 +118,6 @@
 | Option | Description |
 |--------|-------------|
 | --template |  Use a custom template located locally, in NPM, or GitHub. |
-| --copy-from\|--src | _Deprecated_ <br/> Use --template instead. Specifies a directory from which to copy the current Cordova project. |
 |--link-to | Symlink to specified `www` directory without creating a copy. |
 
 ### Directory structure
diff --git a/src/cli.js b/src/cli.js
index 73ffc6b..520520a 100644
--- a/src/cli.js
+++ b/src/cli.js
@@ -47,7 +47,6 @@
     'noregistry': Boolean,
     'nohooks': Array,
     'shrinkwrap': Boolean,
-    'copy-from': String,
     'link-to': path,
     'searchpath': String,
     'variable': Array,
@@ -74,7 +73,6 @@
     'd': '--verbose',
     'v': '--version',
     'h': '--help',
-    'src': '--copy-from',
     't': '--template'
 };