0c1aa6e133
* remove unneeded explination and authorship comments (as it's noted in the README.md) * s/git/command git/ (see issue #30) * add is-true function, as it is required by a few other functions.
10 lines
249 B
Text
10 lines
249 B
Text
# 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
|
|
for file in "${@}"; do
|
|
print "${file}" >>! $(git-root)/.gitignore
|
|
done
|