简体   繁体   中英

How can I configure git, so that node_modules can be versioned locally but ignored when pushing?

How can I configure git, so that node_modules can be versioned locally but ignored when pushing? Is there a possibility?

Why: Different packaging systems (eg npm/yarn/..) access node_modules and sometimes some packages get corrupted. We want to monitor, what the tools change exactly. And node_modules should not be pushed onto the development server.

It is not possible.

What you can do is exclude node_modules from the Git repository and create a new Git repository within node_modules

You can define the following structure:

/project
/my_node_modules

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM