user1816491
user1816491

Reputation:

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 (e.g. 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.

Upvotes: 0

Views: 114

Answers (2)

Vampire
Vampire

Reputation: 38669

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

Upvotes: 1

Ivan
Ivan

Reputation: 3184

You can define the following structure:

/project
/my_node_modules

Upvotes: 0

Related Questions