We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 365ffe8 commit 30c11a1Copy full SHA for 30c11a1
README.md
@@ -198,17 +198,19 @@ The `skipInterpolation` field in the metadata file should be a [minimatch glob p
198
The format needed for a specific official template is:
199
200
```
201
-vue init <template-name>#<branch-name> <project-name>
+vue init '<template-name>#<branch-name>' <project-name>
202
203
204
Example:
205
206
Installing the [`1.0` branch](https://github.com/vuejs-templates/webpack-simple/tree/1.0) of the webpack-simple vue template:
207
208
209
-vue init webpack-simple#1.0 mynewproject
+vue init 'webpack-simple#1.0' mynewproject
210
211
212
+_Note_: The surrounding quotes are necessary on zsh shells because of the special meaning of the `#` character.
213
+
214
215
### License
216
0 commit comments