config: some renames

This commit is contained in:
xeruf 2022-01-08 23:07:46 +01:00
parent 7fd5137121
commit 42e5ad9cb1
3 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# Untracks and adds back all files (or the given path) # Untracks and adds back all files (or the given path)
# Useful to remove tracked files after adding them to the gitignore # Useful to remove tracked files after adding them to the gitignore
git rm --cached --quiet -r ${1:-.} git rm --cached --quiet -r "${1:-.}"
git add ${1:-.} git add "${1:-.}"
git status -s git status -s