darkrc/bin/git-ignore

9 lines
192 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ -z "$@" ]
then
!$(git config --get core.editor) $(git rev-parse --show-toplevel)/.git/info/exclude
else
ls -d "$@" >> "$(git rev-parse --show-toplevel)/.git/info/exclude"
fi