summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 82ed2bc)
raw | patch | inline | side by side (parent: 82ed2bc)
author | Junio C Hamano <junkio@cox.net> | |
Tue, 18 Oct 2005 00:46:35 +0000 (17:46 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 18 Oct 2005 04:52:10 +0000 (21:52 -0700) |
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>
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>
Makefile | patch | blob | history | |
debian/changelog | patch | blob | history | |
git-clone.sh | patch | blob | history | |
git-fetch.sh | patch | blob | history |
diff --git a/Makefile b/Makefile
index a4a5ec4aa3327d5dadaca476e7f0e7135a10ac24..1e1c1b27db7c8cfe0eefe442721d021bf28624c9 100644 (file)
--- a/Makefile
+++ b/Makefile
# DEFINES += -DUSE_STDEV
-GIT_VERSION = 0.99.8d
+GIT_VERSION = 0.99.8e
CFLAGS = -g -O2 -Wall
ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
diff --git a/debian/changelog b/debian/changelog
index 42332b6da8f41882e13eeeefdec7d0bc695c440b..a57e33961dc45cc4937cf9b7a788e365a8e57c85 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
+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 0.99.8d
diff --git a/git-clone.sh b/git-clone.sh
index 78c83e84c26ff6b75f08609ecc3b5cb2cac7c09b..18e692a67b1515c57a20c8574ed53836fb53f2bd 100755 (executable)
--- a/git-clone.sh
+++ b/git-clone.sh
do
name=`expr "$refname" : 'refs/\(.*\)'` &&
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
done <"$clone_tmp/refs"
rm -fr "$clone_tmp"
diff --git a/git-fetch.sh b/git-fetch.sh
index 8fb6fba1454ca6fc8e5eff5f1d0936877436fa7a..360fecdd4ea6d59d52274fa397fd6af895e0f1f1 100755 (executable)
--- a/git-fetch.sh
+++ b/git-fetch.sh
then
taglist=$(git-ls-remote --tags "$remote" |
sed -e '
- /\^{}$/d
+ /\^/d
s/^[^ ]* //
s/.*/&:&/')
if test "$#" -gt 1