How can I delete a remote Git repository from the command line (Git Bash)?

后端 未结 3 1272
北海茫月
北海茫月 2021-02-14 05:47

I\'m trying to remove a remote git repository through Git Bash. I\'m aware that I can just delete it through GitHub; however, I want to learn how to do so throu

3条回答
  •  情书的邮戳
    2021-02-14 06:03

    To delete a remote repo from cmd line, you can use following command

    git push origin --delete remote-reponame

提交回复
热议问题