Simple Git & GitHub CLI Shell Scripts
1#!/bin/bash
2
3# Arguments for the usage
4ghd_arguments=(
5 "$(basename "$0" .sh) [owned_repo]"
6 "$(basename "$0" .sh)"
7)
8
9# Description for the usage
10ghd_descriptions=(
11 "Deletes a local and/or remote GitHub repository."
12)
13
14# Options for the usage
15ghd_options=(
16 "[owned_repo] The name of an owned repo to delete,"
17 " or fork name will work too"
18 ""
19 "--help Display this help message."
20)
21
22# Extra help
23ghd_extras=(
24 "extra"
25)