From 7f49243ab071dc65283aa875313c938b961c95ee Mon Sep 17 00:00:00 2001 From: Vlad Doster Date: Fri, 10 Apr 2020 17:43:44 -0500 Subject: [PATCH] Added another git alias for git add/add -u and added script comment about what systems it works on --- .config/git/config | 2 ++ .local/bin/delete_certain_known_hosts | 1 + 2 files changed, 3 insertions(+) diff --git a/.config/git/config b/.config/git/config index 04547067..22070480 100644 --- a/.config/git/config +++ b/.config/git/config @@ -14,6 +14,8 @@ diff = auto branch = auto [alias] + a = add + au = add -u p = push pu = pull st = status -uno diff --git a/.local/bin/delete_certain_known_hosts b/.local/bin/delete_certain_known_hosts index 2a20b849..1eb2a2e3 100755 --- a/.local/bin/delete_certain_known_hosts +++ b/.local/bin/delete_certain_known_hosts @@ -1,4 +1,5 @@ #!/bin/bash +# Works on all GNU systems and tested on MacOS 10.15.13 # Deletes certain lines of ~/.ssh/known_hosts # Check if any args passed if [ $# -eq 0 ]; then