git.nynim.org
/
dotfiles.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
.vimrc: Plugin updates
[dotfiles.git]
/
bin
/
git-ignore
1
#!/bin/sh
2
# Usage: git-ignore <file1>,<file2>,...
3
# Add files to the current Git repo's exclude list
4
5
for
pattern
in
"$@"
6
do
7
echo
"
$pattern
"
|
tee
-a
.git
/
info
/
exclude
8
done