]> scripts.mit.edu Git - wizard.git/blob - wizard/git.py
Document usage advice for eval in ParallelShell.
[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