user391986
user391986

Reputation: 30886

git workflow with vendor directory

I have two branches in my git repo master and production. The main difference is that in production, the vendor directory has been checked in and is not present in the .gitignore

My issue is when I switch from production to master

git checkout master

the whole vendor directory gets wipped out.

What are my options?

Upvotes: 8

Views: 226

Answers (1)

VonC
VonC

Reputation: 1323593

Try a 'skip-worktree' (from git update-index):

git update-index --skip-worktree -- vendor

When on the branch production.
See if, when checking out the master branch, that directory is deleted.

Upvotes: 4

Related Questions