How to create react app without git (skipping git)?

Viewed 9989

I don't want git initialized in my folder when I create react app by

npx create-react-app appName

When I was working with Angular, it was comparatively easier by just typing the command

ng new my-app --skip-git

Can anyone please tell me the related command for React? I tried searching but couldn't find any satisfactory answer.

3 Answers

There's an open GitHub issue for your case.

TL;DR: There are no current plans to include such an option. The React developers recommend you run rm -rf .git after npx create-react-app appName to achieve these results.

Try npx create-react-app --skip-git. If this is not working delete the .git folder manually .

I had case where I have nodejs folder and I wanted to create react frontend project folder inside react project folder. I did it using this command npx react-create-app projectname --skip-git

Related