mirror of
https://github.com/tj/git-extras.git
synced 2026-09-13 00:46:26 -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,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
VERSION="1.4.0"
|
||||
VERSION="1.5.0"
|
||||
|
||||
update() {
|
||||
local orig=$PWD
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
if test $# -eq 0; then
|
||||
test -f .gitignore && cat .gitignore
|
||||
else
|
||||
for pattern in $@; do
|
||||
for pattern in "$@"; do
|
||||
echo "... adding '$pattern' to .gitignore"
|
||||
echo $pattern >> .gitignore
|
||||
echo "$pattern" >> .gitignore
|
||||
done
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue