Answers for "how to fully delete a github repo in linux terminal"

29

delete git repository command line

rm -rf .git
Posted by: Guest on April-01-2020
1

delete a github repository using bash

winpty curl -X DELETE -H 'Authorization: token [GENERATED_TOKEN]' https://api.github.com/repos/[USER]/[REPO_NAME]

# follow steps here to generate token:
https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line
Posted by: Guest on May-30-2020

Code answers related to "how to fully delete a github repo in linux terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language