From 4a8337e472adab57492f6056704c8a15cb074e06 Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Tue, 18 Apr 2023 23:33:53 +0200 Subject: [PATCH] [update/shell] Add `pull` and `fetch` aliases for git --- .config/shell/aliases.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/shell/aliases.sh b/.config/shell/aliases.sh index 49f50f5..e34144a 100644 --- a/.config/shell/aliases.sh +++ b/.config/shell/aliases.sh @@ -30,6 +30,8 @@ alias commit='git commit -S' alias clone='git clone' alias add='git add' alias status='git status' +alias pull='git pull' +alias fetch='git fetch' # Colorize grep output (good for log files) alias grep='grep --color=auto'