diff options
Diffstat (limited to 'git')
-rw-r--r-- | git/repo/base.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 69e3e313..ed976b2c 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -697,6 +697,19 @@ class Repo(object): finalize_process(proc) return untracked_files + def get_ignored(self, *paths): + """Checks if paths are ignored via .gitignore + Doing so using the "git check-ignore" method. + + :param paths: List of paths to check whether they are ignored or not + :return: sublist of ignored paths + """ + try: + proc = self.git.check_ignore(*paths) + except GitCommandError: + return [] + return proc.replace("\\\\", "\\").replace('"', "").split("\n") + @property def active_branch(self): """The name of the currently active branch. |