sorted cli options
This commit is contained in:
parent
92acbc8cec
commit
25f6299558
1 changed files with 6 additions and 6 deletions
|
@ -50,14 +50,14 @@ def init_parser():
|
|||
|
||||
parser.add_argument("username", help="A Github username")
|
||||
parser.add_argument("backupdir", help="The folder where you want your backups to go")
|
||||
parser.add_argument("-c","--cron", help="Use this when running from a cron job", action="store_true")
|
||||
parser.add_argument("-m","--mirror", help="Create a bare mirror", action="store_true")
|
||||
parser.add_argument("-g","--git", help="Pass extra arguments to git", default="", metavar="ARGS")
|
||||
parser.add_argument("-c", "--cron", help="Use this when running from a cron job", action="store_true")
|
||||
parser.add_argument("-m", "--mirror", help="Create a bare mirror", action="store_true")
|
||||
parser.add_argument("-S", "--ssh", help="Use SSH protocol", action="store_true")
|
||||
parser.add_argument("-g", "--git", help="Pass extra arguments to git", default="", metavar="ARGS")
|
||||
parser.add_argument("-s", "--suffix", help="Add suffix to repository directory names", default="")
|
||||
parser.add_argument("-P", "--prefix", help="Add prefix to repository directory names", default="")
|
||||
parser.add_argument("-p", "--password", help="Authenticate with Github API")
|
||||
parser.add_argument("-P","--prefix", help="Add prefix to repository directory names", default="")
|
||||
parser.add_argument("-o","--organization", help="Backup Organizational repositories")
|
||||
parser.add_argument("-S","--ssh", help="Use SSH protocol", action="store_true")
|
||||
parser.add_argument("-o", "--organization", help="Backup Organizational repositories", metavar="ORG")
|
||||
|
||||
return parser
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue