]> scripts.mit.edu Git - wizard.git/blob - wizard/git.py
Implement 'append-by-default' reports, --redo for mass-upgrade.
[wizard.git] / wizard / git.py
1 """
2 Helper functions for dealing with Git.
3 """
4
5 from wizard import shell
6
7 def describe():
8     """Finds the output of git describe --tags of the current directory."""
9     return shell.Shell().safeCall("git", "describe", "--tags", strip=True)
10