diff --git a/stoken/main.py b/stoken/main.py index 6aa7913..2a86d04 100644 --- a/stoken/main.py +++ b/stoken/main.py @@ -49,7 +49,7 @@ def get_git_repo() -> Union[git.repo.base.Repo, None]: if (git_dev / ".git").exists(): try: repo = git.repo.base.Repo(git_dev) - print(f"Found git root: {repo.git_dir}") + print(f"Found git root: {repo.git_dir}. If there's no need to detect ignored files in git, use the option `--no-git`.") return repo except: return None