config: some renames
This commit is contained in:
parent
7fd5137121
commit
42e5ad9cb1
|
@ -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
|
Loading…
Reference in New Issue