Skip to content

Instantly share code, notes, and snippets.

View Wellusioner's full-sized avatar
😁
If you've never had a bug in your code, well then you are not a programmer

khamdamov Wellusioner

😁
If you've never had a bug in your code, well then you are not a programmer
View GitHub Profile
# deleting a branch from the server
# for custom remote
git push <remote> --delete <branchname>
# for origin remote
git push origin --delete <branchname>