git workflow with vendor directory
composer-php, git
Solution
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.
Problem
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?