-
-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Caddyfile in .gitignore? #2237
Comments
I think maybe a Alternatively, it looks like you could configure your git to not ignore case with |
This is a little confusing. Is there a difference between |
Yes, |
Ah, that makes it quite prone to problems. I vote for |
Yeah, sounds good 👍 |
Hi,
We're using Caddy as a dependency for our project through
dep
, and we check in our vendored dependencies. However, because of the fact that Caddy's.gitignore
contains an entryCaddyfile
, that particular directory under vendor/ remains ignored and doesn't get pushed into our repository. This causes the build to be broken for whoever clones the repo, as they have to delete the vendor Caddy directory and re-run$ dep ensure
to getcaddyfile
back.It may be intentional that the .gitignore lists
Caddyfile
with an uppercase C, and the directory itself is calledcaddyfile
with a lowercase c, however on a macOS systemgit
disregards the case difference.Please advise.
Thanks,
Areg
The text was updated successfully, but these errors were encountered: