diff options
author | Teddy Wing | 2019-05-25 11:48:53 +0200 |
---|---|---|
committer | Teddy Wing | 2019-05-25 11:48:53 +0200 |
commit | c0c93e41d85ab862395138e0efeb2f575ecd1d7a (patch) | |
tree | e0908071d79d7972ea07a3962c318887083cfcea | |
parent | 33515f18b84997693baf1ca842f4297fb77edbd0 (diff) | |
download | git-branch-list-c0c93e41d85ab862395138e0efeb2f575ecd1d7a.tar.bz2 |
git-branch-list(usage): Add `clear` command; Drop is variadic
* Add the `clear` command to the help
* Update the `drop` command to indicate that multiple branch IDs can be
passed as arguments
Looks like I forgot to update the help when I made those changes.
-rwxr-xr-x | git-branch-list | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/git-branch-list b/git-branch-list index ed5ef34..024ae5b 100755 --- a/git-branch-list +++ b/git-branch-list @@ -31,8 +31,9 @@ function initialise_database () { function print_usage () { cat 1>&2 <<__EOF__ usage: git branch-list - or: git branch-list save [<branch-name>] - or: git branch-list drop [<branch-name>] + or: git branch-list save [<branch-name>] + or: git branch-list drop [<branch-name>...] + or: git branch-list clear [<branch-name>] or: git branch-list ID Generic options |