Re: [PATCH] http-push: making HTTP push more robust and more user-friendly

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Johannes Schindelin <Johannes.Schindelin@...>
Cc: Mike Hommey <mh@...>, Grégoire <devel@...>, <git@...>, Daniel Barkalow <barkalow@...>
Date: Monday, January 21, 2008 - 9:34 pm

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:


Sigh, but Ok.  Then let's do this.

-- >8 --
Clarify that http-push being temporarily disabled with older cURL

Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
 Documentation/RelNotes-1.5.4.txt |   14 ++++++++++++--
 Documentation/git-http-push.txt  |    3 +++
 http.h                           |    8 ++++++++
 3 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/Documentation/RelNotes-1.5.4.txt b/Documentation/RelNotes-1.5.4.txt
index 9c864c9..b3cc5e0 100644
--- a/Documentation/RelNotes-1.5.4.txt
+++ b/Documentation/RelNotes-1.5.4.txt
@@ -10,8 +10,18 @@ Removal
  * As git-commit and git-status have been rewritten, "git runstatus"
    helper script lost all its users and has been removed.
 
- * Curl library older than 7.10 is not supported by "git http-push",
-   as it does not work without CURLM.
+
+Temporarily Disabled
+--------------------
+
+ * "git http-push" is known not to work well with cURL library older
+   than 7.16, and we had reports of repository corruption.  It is
+   disabled on such platforms for now.  Unfortunately, 1.5.3.8 shares
+   the same issue.  In other words, this does not mean you will be
+   fine if you stick to an older git release.  For now, please do not
+   use http-push from older git with cURL older than 7.16 if you
+   value your data. A proper fix will hopefully materialize in
+   later versions.
 
 
 Deprecation notices
diff --git a/Documentation/git-http-push.txt b/Documentation/git-http-push.txt
index cca77f1..0b82722 100644
--- a/Documentation/git-http-push.txt
+++ b/Documentation/git-http-push.txt
@@ -15,6 +15,9 @@ DESCRIPTION
 Sends missing objects to remote repository, and updates the
 remote branch.
 
+*NOTE*: This command is temporarily disabled if your cURL
+library is older than 7.16, as the combination has been reported
+not to work and sometimes corrupts repository.
 
 OPTIONS
 -------
diff --git a/http.h b/http.h
index aeba930..9bab2c8 100644
--- a/http.h
+++ b/http.h
@@ -8,6 +8,14 @@
 
 #include "strbuf.h"
 
+/*
+ * We detect based on the cURL version if multi-transfer is
+ * usable in this implementation and define this symbol accordingly.
+ * This is not something Makefile should set nor users should pass
+ * via CFLAGS.
+ */
+#undef USE_CURL_MULTI
+
 #if LIBCURL_VERSION_NUM >= 0x071000
 #define USE_CURL_MULTI
 #define DEFAULT_MAX_REQUESTS 5
-- 
1.5.4.rc4.11.g7422b

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] http-push: making HTTP push more robust and more use..., Grégoire Barbier, (Sun Jan 13, 3:02 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Grégoire Barbier, (Mon Jan 21, 6:09 am)
Re: [PATCH] http-push: making HTTP push more robust and more..., Grégoire Barbier, (Mon Jan 21, 6:27 am)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Mon Jan 21, 8:17 am)
Re: [PATCH] http-push: making HTTP push more robust and more..., Grégoire Barbier, (Mon Jan 21, 7:12 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Mon Jan 21, 8:58 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Junio C Hamano, (Mon Jan 21, 9:34 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Mon Jan 21, 9:38 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Mon Jan 21, 10:14 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Grégoire Barbier, (Sat Jan 19, 11:21 am)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Sat Jan 19, 7:18 pm)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Mon Jan 14, 7:21 am)
Re: [PATCH] http-push: making HTTP push more robust and more..., Johannes Schindelin, (Mon Jan 14, 4:22 pm)
[PATCH] http-push: fix webdav lock leak., Grégoire Barbier, (Sun Jan 13, 3:02 pm)
[PATCH] http-push: disable http-push without USE_CURL_MULTI, Grégoire Barbier, (Sun Jan 13, 3:02 pm)