""" Helper functions for dealing with Git. """ from wizard import shell def describe(): """Finds the output of git describe --tags of the current directory.""" return shell.Shell().safeCall("git", "describe", "--tags", strip=True)