Skip to content

Instantly share code, notes, and snippets.

View thesoorajsingh's full-sized avatar
:shipit:
force pushes are for friday evenings only

sooraj thesoorajsingh

:shipit:
force pushes are for friday evenings only
View GitHub Profile
@thesoorajsingh
thesoorajsingh / .gitconfig
Last active May 27, 2025 10:38
Git Configs
[alias]
deploystaging = "!f() { \
BRANCH=$(git rev-parse --abbrev-ref HEAD) && \
git fetch origin && \
git checkout staging && \
git merge \"$BRANCH\" && \
git push origin staging && \
git checkout \"$BRANCH\"; \
}; f"