Added another git alias for git add/add -u and added script comment about what systems it works on

This commit is contained in:
Vlad Doster 2020-04-10 17:43:44 -05:00
parent 01663194e2
commit 7f49243ab0
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,8 @@
diff = auto
branch = auto
[alias]
a = add
au = add -u
p = push
pu = pull
st = status -uno

View File

@ -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