Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the
vendor
directory to .gitignore
* gardener#748 removed the `vendor` directory from `etcd-druid` and makes the project rely on the module cache set up by the `go` tool for finding dependencies. * However, there are use cases where for better developer experience, it would make sense to have the dependencies reside in the same project folder as `etcd-druid`, so that tokens can be searched for, using project wide search in any text editor. Results can be fetched from the dependencies, without having to rely on the LSP. For example, this would make looking at all usages of a constant that is defined by a dependency easier. * The developer can simply run `go mod vendor` without it affecting the modified build process which doesn't use `vendor`, as defined in gardener#748.
- Loading branch information