Skip to content

Instantly share code, notes, and snippets.

View muhammad-zakir's full-sized avatar
👾
Endors toi

Muhammad Zakir muhammad-zakir

👾
Endors toi
View GitHub Profile
@muhammad-zakir
muhammad-zakir / .zshrc
Last active May 3, 2021 09:01
Collection of bash / zsh aliases to simplify git commands in a wee bit more graceful way.
# Move on to another branch
moveon() {
git fetch;
git switch $1;
git pull origin $1;
}
# Update local branch
update() {
git fetch;