Skip to content

Instantly share code, notes, and snippets.

@TaurusOlson
Created March 6, 2012 16:54
Show Gist options
  • Save TaurusOlson/1987467 to your computer and use it in GitHub Desktop.
Save TaurusOlson/1987467 to your computer and use it in GitHub Desktop.
Some functions using t.py for a project (list of the features and bugs)
bugs() {
t.py --task-dir . --list=ISSUES --delete-if-empty -g BUG
}
bug-new() {
t.py --task-dir . --list=ISSUES --delete-if-empty "BUG : $@"
}
bug-done() {
t.py --task-dir . --list=ISSUES --delete-if-empty --done -g BUG
}
features() {
t.py --task-dir . --list=ISSUES --delete-if-empty -g FEATURE
}
feature-new() {
t.py --task-dir . --list=ISSUES --delete-if-empty "FEATURE: $@"
}
feature-done() {
t.py --task-dir . --list=ISSUES --delete-if-empty --done -g FEATURE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment