From db9ca55c71ac8c768f16cf1947b4360bfb99ec7c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 30 May 2020 15:31:45 +0300 Subject: [PATCH] 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. --- bin/git-bug | 4 ---- bin/git-chore | 4 ---- bin/git-refactor | 4 ---- 3 files changed, 12 deletions(-) delete mode 100755 bin/git-bug delete mode 100755 bin/git-chore delete mode 100755 bin/git-refactor diff --git a/bin/git-bug b/bin/git-bug deleted file mode 100755 index c2672f7..0000000 --- a/bin/git-bug +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -ALIAS=bug -git feature -a $ALIAS "$@" diff --git a/bin/git-chore b/bin/git-chore deleted file mode 100755 index 728b2aa..0000000 --- a/bin/git-chore +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -ALIAS=chore -git feature -a $ALIAS "$@" diff --git a/bin/git-refactor b/bin/git-refactor deleted file mode 100755 index 2e2a83a..0000000 --- a/bin/git-refactor +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -ALIAS=refactor -git feature -a $ALIAS "$@"