1
0
Fork 0
mirror of synced 2024-06-28 11:21:10 -04:00
zimfw/modules/git/functions/git-ignore-add

11 lines
249 B
Plaintext
Raw Normal View History

2015-12-15 00:12:17 -05:00
# make sure we have a git-root
if ! git-root &> /dev/null; then
print 'not in a git repository' >&2
return 1
fi
# we are in a git repository. add parameters to .gitignore
2015-12-19 09:48:29 -05:00
for file in "${@}"; do
print "${file}" >>! $(git-root)/.gitignore
2015-12-15 00:12:17 -05:00
done