From f4e380a4a88d5767963367ca4bcb526d2a4d305a Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Mon, 16 Dec 2019 17:29:36 -0500 Subject: [PATCH] Added "git fetch" alias --- .bash_aliases | 1 + 1 file changed, 1 insertion(+) diff --git a/.bash_aliases b/.bash_aliases index 010b398..7ee20b5 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -47,6 +47,7 @@ alias 'log'='git log' alias 'checkout'='git checkout' alias 'commit'='git commit -S' alias 'amend'='git commit -S --amend' +alias 'fetch'='git fetch' # Color shift alias 'night'='redshift -P -O 2500'