summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to 'git')
-rw-r--r--git/repo/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index ed976b2c..e0c4adb3 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -697,12 +697,12 @@ class Repo(object):
finalize_process(proc)
return untracked_files
- def get_ignored(self, *paths):
+ def 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
+ :return: sublist of those paths which are ignored
"""
try:
proc = self.git.check_ignore(*paths)