We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b1f9b commit 1a055cfCopy full SHA for 1a055cf
src/serena/util/git.py
@@ -16,6 +16,5 @@ def get_git_status() -> GitStatus | None:
16
return GitStatus(
17
commit=commit_hash, has_unstaged_changes=unstaged, has_staged_uncommitted_changes=staged, has_untracked_files=untracked
18
)
19
- except Exception as e:
20
- log.error("Error determining Git status", exc_info=e)
+ except:
21
return None
0 commit comments