From 2b4e9742c4c3704f581ffa8d1f6f16ac9d843406 Mon Sep 17 00:00:00 2001 From: Ivan Zugec Date: Wed, 2 Sep 2020 12:32:49 +1000 Subject: [PATCH] capitalised the word "But" in point 3. Just capitalised the word `But`. --- .../should-i-commit-the-dependencies-in-my-vendor-directory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md b/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md index 14da5f5e3..67d4133d4 100644 --- a/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +++ b/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md @@ -25,7 +25,7 @@ If you really feel like you must do this, you have a few options: 3. Remove the `.git` directory of every dependency after the installation, then you can add them to your git repo. You can do that with `rm -rf vendor/**/.git` in ZSH or `find vendor/ -type d -name ".git" -exec rm -rf {} \;` in Bash. - but this means you will have to delete those dependencies from disk before + But this means you will have to delete those dependencies from disk before running composer update. 4. Add a .gitignore rule (`/vendor/**/.git`) to ignore all the vendor `.git` folders. This approach does not require that you delete dependencies from disk prior to