Fixed vim and zsh
This commit is contained in:
10
zsh/modules/git/functions/git-ignore-add
Normal file
10
zsh/modules/git/functions/git-ignore-add
Normal file
@ -0,0 +1,10 @@
|
||||
# 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
|
Reference in New Issue
Block a user