Let's say I have a new folder with three new files in it.
When I use git status it will show like this:
But when I use GitPython's repo.untracked_files it will show like this:
MyProject/New Folder/file_a.txt
MyProject/New Folder/file_b.txt
MyProject/New Folder/file_c.txt
Is there a way to get the same result as the git status version?
Let's say I have a new folder with three new files in it.
When I use
git statusit will show like this:But when I use GitPython's
repo.untracked_filesit will show like this:Is there a way to get the same result as the
git statusversion?