1
0
Fork 0
mirror of synced 2024-06-30 12:11:08 -04:00
zimfw/modules/git/functions/git-ignore-add

9 lines
210 B
Plaintext
Raw Normal View History

# vim:et sts=2 sw=2 ft=zsh
local git_root
git_root=$(git-root) || return 1
2015-12-15 00:12:17 -05:00
# 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