Могу ли я создать проект vue-cli без Git? - PullRequest
0 голосов
/ 09 мая 2019

Когда я создаю проект vue-cli, по умолчанию поставляется с инициализированным Git. Итак, я хочу знать, есть ли какой-нибудь флаг или что-то, чтобы создать шаблон без него.

1 Ответ

1 голос
/ 09 мая 2019

Из документов:

Использование: 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
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...