Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-10-18 04:46:35 +0400
committerJunio C Hamano <junkio@cox.net>2005-10-18 08:52:10 +0400
commitc99ec048bf386ed2b28086cb3756af2dc91fc3d2 (patch)
treeec8d8f448b114f1817337e30cae901206f8d9afb
parent82ed2bcd920d73d218e94c95178be6a61ec7ed54 (diff)
GIT 0.99.8ev0.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>
-rw-r--r--Makefile2
-rw-r--r--debian/changelog6
-rwxr-xr-xgit-clone.sh4
-rwxr-xr-xgit-fetch.sh2
4 files changed, 10 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a4a5ec4aa3..1e1c1b27db 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@
# 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 42332b6da8..a57e33961d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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 0.99.8d
diff --git a/git-clone.sh b/git-clone.sh
index 78c83e84c2..18e692a67b 100755
--- a/git-clone.sh
+++ b/git-clone.sh
@@ -54,9 +54,9 @@ Perhaps git-update-server-info needs to be run there?"
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 8fb6fba145..360fecdd4e 100755
--- a/git-fetch.sh
+++ b/git-fetch.sh
@@ -172,7 +172,7 @@ if test "$tags"
then
taglist=$(git-ls-remote --tags "$remote" |
sed -e '
- /\^{}$/d
+ /\^/d
s/^[^ ]* //
s/.*/&:&/')
if test "$#" -gt 1