You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c.Flags().StringVar(&r.name, "name", "", "Name of the package repository. If unspecified, will use the name portion (last segment) of the repository URL.")
88
88
c.Flags().StringVar(&r.description, "description", "", "Brief description of the package repository.")
89
89
c.Flags().BoolVar(&r.deployment, "deployment", false, "Repository is a deployment repository; packages in a deployment repository are considered deployment-ready.")
90
-
c.Flags().StringVar(&r.username, "repo-username", "", "Username for repository authentication.")
91
-
c.Flags().StringVar(&r.password, "repo-password", "", "Password for repository authentication.")
90
+
c.Flags().StringVar(&r.username, "repo-basic-username", "", "Username for repository authentication using basic auth.")
91
+
c.Flags().StringVar(&r.password, "repo-basic-password", "", "Password for repository authentication using basic auth.")
0 commit comments