fix: accept bare flag to remove bare repositories

This commit is contained in:
Zhizhen He 2025-10-14 22:38:19 +08:00
parent 511c23c8b7
commit 4b56f98e01
No known key found for this signature in database
GPG key ID: B5A215D74FCFD6A7

View file

@ -77,6 +77,7 @@ var commandRm = &cli.Command{
Action: doRm,
Flags: []cli.Flag{
&cli.BoolFlag{Name: "dry-run", Usage: "Do not remove actually"},
&cli.BoolFlag{Name: "bare", Usage: "Remove a bare repository"},
},
}