mirror of
https://github.com/tj/git-extras.git
synced 2026-09-13 08:56:19 -04:00
Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
881a70e7fc | ||
|
|
c9b3e84187 |
|
|
@ -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
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
VERSION="1.4.0"
|
VERSION="1.5.0"
|
||||||
|
|
||||||
update() {
|
update() {
|
||||||
local orig=$PWD
|
local orig=$PWD
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue