From 18ba463ec5b654dec5844e4286f8043c9e8afdc6 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Wed, 3 Aug 2022 05:36:31 -0700 Subject: [PATCH] :memo: Made note on easier git push all remotes --- aliases | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aliases b/aliases index 827c82a8..028c05ff 100644 --- a/aliases +++ b/aliases @@ -201,6 +201,8 @@ alias pscpu="ps auxf | sort -nr -k 3 | head -5" alias git-a="git add" alias git-c="git commit -m" alias git-p="git push" +# taken from Luke Smith, put in bgit eventually +alias gua="git remote | xargs -L1 git push --all" # undo local file changes and keep your last commit alias git-r="git reset --hard" # undo local file changes and remove your last commit