-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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