Horje
delete a github repository using bash Code Example
How to upload a files to a repository on github using gitbash
git init
git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master or git push -f origin master
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
git clone repo with name
git clone https://github.com/foo/repo_name.git new_directory_name




Shell

Related
list all the emulator Code Example list all the emulator Code Example
git stash apply undo merge conflict Code Example git stash apply undo merge conflict Code Example
python run java jar Code Example python run java jar Code Example
linux get first line of file Code Example linux get first line of file Code Example
switch wsl 2 to 1 Code Example switch wsl 2 to 1 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8