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
As Jubobs mentioned above you can use github dev API, so:
curl -u :username -X "DELETE" https://api.github.com/repos/:username/:repo
Where :username = your username(github handler) and :repo = a name of a repo you want to get rid of