Skip to content

Instantly share code, notes, and snippets.

View jerzabek's full-sized avatar

Ivan Jeržabek jerzabek

View GitHub Profile
@jerzabek
jerzabek / .zshrc
Last active August 22, 2023 14:42
Aliases I use in my ZSH terminal
# I also use https://ohmyz.sh/ with rkj-repos theme
# Useful aliases that I use day to day
alias ls="ls -al"
alias cd..="cd .."
# Using this flag the history of reviews, comments and commits on a pull request on github is untouched after rebasing a branch
alias gitrb="git rebase -i --committer-date-is-author-date"
alias yc="yarn test --collectCoverage --watchAll"
alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias rmrfnm="rm -rf node_modules"