GIT 0.99.8e
Linus Torvalds: make checkout-index '-a' flag saner. Junio C Hamano: whatchanged: document -m option from git-diff-tree. Functions to quote and unquote pathnames in C-style. Update git-apply to use C-style quoting for funny pathnames. Do not quote SP. git-checkout-index: documentation updates. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
82ed2bcd92
commit
c99ec048bf
2
Makefile
2
Makefile
@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
# DEFINES += -DUSE_STDEV
|
# DEFINES += -DUSE_STDEV
|
||||||
|
|
||||||
GIT_VERSION = 0.99.8d
|
GIT_VERSION = 0.99.8e
|
||||||
|
|
||||||
CFLAGS = -g -O2 -Wall
|
CFLAGS = -g -O2 -Wall
|
||||||
ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
|
ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
git-core (0.99.8e-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* GIT 0.99.8e
|
||||||
|
|
||||||
|
-- Junio C Hamano <junkio@cox.net> Mon, 17 Oct 2005 17:45:08 -0700
|
||||||
|
|
||||||
git-core (0.99.8d-0) unstable; urgency=low
|
git-core (0.99.8d-0) unstable; urgency=low
|
||||||
|
|
||||||
* GIT 0.99.8d
|
* GIT 0.99.8d
|
||||||
|
@ -54,9 +54,9 @@ Perhaps git-update-server-info needs to be run there?"
|
|||||||
do
|
do
|
||||||
name=`expr "$refname" : 'refs/\(.*\)'` &&
|
name=`expr "$refname" : 'refs/\(.*\)'` &&
|
||||||
case "$name" in
|
case "$name" in
|
||||||
*^{}) ;;
|
*^*) ;;
|
||||||
*)
|
*)
|
||||||
git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1 ;;
|
git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1
|
||||||
esac
|
esac
|
||||||
done <"$clone_tmp/refs"
|
done <"$clone_tmp/refs"
|
||||||
rm -fr "$clone_tmp"
|
rm -fr "$clone_tmp"
|
||||||
|
@ -172,7 +172,7 @@ if test "$tags"
|
|||||||
then
|
then
|
||||||
taglist=$(git-ls-remote --tags "$remote" |
|
taglist=$(git-ls-remote --tags "$remote" |
|
||||||
sed -e '
|
sed -e '
|
||||||
/\^{}$/d
|
/\^/d
|
||||||
s/^[^ ]* //
|
s/^[^ ]* //
|
||||||
s/.*/&:&/')
|
s/.*/&:&/')
|
||||||
if test "$#" -gt 1
|
if test "$#" -gt 1
|
||||||
|
Loading…
Reference in New Issue
Block a user