Home > Back-end >  Is there a way to make all your repositories / repos in GitHub Private from commandline or git? Wind
Is there a way to make all your repositories / repos in GitHub Private from commandline or git? Wind

Time:07-07

Is there a way to make all your repositories / repos in GitHub Public from commandline or git on Windows?

CodePudding user response:

You're probably looking for the GitHub CLI program. Specifically:

gh repo edit your/repository --visibility=private
  • Related