Skip to content

Instantly share code, notes, and snippets.

View aswinmohanme's full-sized avatar
🎯
Focusing

Aswin Mohan aswinmohanme

🎯
Focusing
View GitHub Profile
@james2doyle
james2doyle / git.fish
Last active May 20, 2025 04:21
Git abbreviations for Fish shell
# tj git aliases
abbr -a gd "git diff -M"
abbr -a ga "git add"
abbr -a gaa "git add --all ."
abbr -a gbd "git branch -D"
abbr -a gs "git status"
abbr -a gca "git commit -a -m"
abbr -a gm "git merge --no-ff"
abbr -a gpt "git push --tags"
abbr -a gp "git push"