We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a4610 commit 75aa91dCopy full SHA for 75aa91d
poetry/core/vcs/git.py
@@ -256,8 +256,10 @@ 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))
260
+ for path in folder.rglob('.git/*'))
261
- return output.strip().split("\n")
262
+ return dotgit + output.strip().split("\n")
263
264
def remote_urls(self, folder=None): # type: (...) -> dict
265
output = self.run(
0 commit comments