mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
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:
parent
852e630314
commit
db9ca55c71
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
ALIAS=bug
|
||||
git feature -a $ALIAS "$@"
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
ALIAS=chore
|
||||
git feature -a $ALIAS "$@"
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
ALIAS=refactor
|
||||
git feature -a $ALIAS "$@"
|
||||
Loading…
Reference in a new issue