Skip to content

Instantly share code, notes, and snippets.

View jsookikian's full-sized avatar

Jordan Sookikian jsookikian

View GitHub Profile
@srebalaji
srebalaji / git-hard-delete
Last active July 23, 2025 00:17
Examples of git custom command
#!/bin/sh
branch=$1
if [ ! -z "$1" ]
then
git branch -D $branch
git push -d origin $branch
else
echo "Branch name is not specified"