Remove scripts that are mere alias wrappers for git-feature

Notably `git-bug` clobbers a very popular other project of the same name.
Having lightweight wrapper scripts clogging up the subcommand namespace
makes it awkward to make use of this project wholesale instead of
piecemeal. These function can be implemented by users with git aliases
very easily.
This commit is contained in:
Caleb Maclennan 2020-05-30 15:31:45 +03:00
parent 852e630314
commit db9ca55c71
No known key found for this signature in database
GPG key ID: 63CC496475267693
3 changed files with 0 additions and 12 deletions

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
ALIAS=bug
git feature -a $ALIAS "$@"

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
ALIAS=chore
git feature -a $ALIAS "$@"

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
ALIAS=refactor
git feature -a $ALIAS "$@"