Compare commits

...

2 commits
main ... 1.5.0

Author SHA1 Message Date
TJ Holowaychuk 881a70e7fc Release 1.5.0 2012-03-15 09:26:40 -07:00
Rob Kennedy c9b3e84187 Don't re-expand wildcards in git-ignore
This resolves issue #86 in visionmedia/git-ignore.
2012-03-15 09:23:06 -07:00
3 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,11 @@
1.5.0 / 2012-03-15
==================
* Added active days to `git-summary(1)`
* Added: sort `git-effort(1)` results. Closes #73
* Fixed `git-ignore(1)` globbing, quote the args [Rob Kennedy]
1.4.0 / 2012-02-08 1.4.0 / 2012-02-08
================== ==================

View file

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
VERSION="1.4.0" VERSION="1.5.0"
update() { update() {
local orig=$PWD local orig=$PWD

View file

@ -3,8 +3,8 @@
if test $# -eq 0; then if test $# -eq 0; then
test -f .gitignore && cat .gitignore test -f .gitignore && cat .gitignore
else else
for pattern in $@; do for pattern in "$@"; do
echo "... adding '$pattern' to .gitignore" echo "... adding '$pattern' to .gitignore"
echo $pattern >> .gitignore echo "$pattern" >> .gitignore
done done
fi fi