我可以在没有Git的情况下创建vue-cli项目吗?

时间:2019-05-08 21:34:22

标签: git vue.js vuejs2 project

当我创建vue-cli项目时,默认情况下,它带有初始化的Git。因此,我想知道是否有任何标记或没有它的模板来创建模板。

2 个答案:

答案 0 :(得分:4)

运行这个命令:

vue create project-name --no-git

答案 1 :(得分:1)

From the docs:

  

用法:create [options] <app-name>

     

创建一个由vue-cli-service驱动的新项目


Options:

  -p, --preset <presetName>       Skip prompts and use saved or remote preset
  -d, --default                   Skip prompts and use default preset
  -i, --inlinePreset <json>       Skip prompts and use inline JSON string as preset
  -m, --packageManager <command>  Use specified npm client when installing dependencies
  -r, --registry <url>            Use specified npm registry when installing dependencies

  -g, --git [message|false]       Force / skip git initialization, optionally specify initial commit message
  -n, --no-git                    Skip git initialization

  -f, --force                     Overwrite target directory if it exists
  -c, --clone                     Use git clone when fetching remote preset
  -x, --proxy                     Use specified proxy when creating project
  -b, --bare                      Scaffold project without beginner instructions
  -h, --help                      Output usage information