We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a4610 commit 6585468Copy full SHA for 6585468
poetry/core/vcs/git.py
@@ -256,8 +256,9 @@ def get_ignored_files(self, folder=None): # type: (...) -> list
256
257
args += ["ls-files", "--others", "-i", "--exclude-standard"]
258
output = self.run(*args)
259
+ dotgit = list(str(path.relative_to(folder)) for path in folder.rglob(".git/*"))
260
- return output.strip().split("\n")
261
+ return dotgit + output.strip().split("\n")
262
263
def remote_urls(self, folder=None): # type: (...) -> dict
264
output = self.run(
0 commit comments