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?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With