Re: [PATCH v3 10/21] pack-bitmap: add support for bitmap indexes

2013-11-27 Thread Karsten Blees
Am 24.11.2013 22:36, schrieb Thomas Rast: Jeff King p...@peff.net writes: [...] I think I'll also lend you a hand writing Documentation/technical/api-khash.txt (expect it tomorrow) so that we also have documentation in the git style, where gitters can be expected to find it on their own.

Re: [PATCH] drop support for experimental loose objects

2013-11-27 Thread Jeff King
On Mon, Nov 25, 2013 at 10:35:19AM -0800, Junio C Hamano wrote: if (type == OBJ_BLOB) { if (stream_blob_to_fd(fd, sha1, NULL, 0) 0) die(unable to stream %s to stdout, sha1_to_hex(sha1)); + if (check_sha1_signature(sha1, NULL, 0, NULL) 0) +

Re: [PATCH v3 13/28] fetch: support fetching from a shallow repository

2013-11-27 Thread Eric Sunshine
On Sun, Nov 24, 2013 at 10:55 PM, Nguyễn Thái Ngọc Duy pclo...@gmail.com wrote: diff --git a/t/t5536-fetch-shallow.sh b/t/t5536-fetch-shallow.sh new file mode 100755 index 000..41de74d --- /dev/null +++ b/t/t5536-fetch-shallow.sh @@ -0,0 +1,128 @@ +#!/bin/sh +

Re: [PATCH 1/2] commit-slab: document clear_$slabname()

2013-11-27 Thread Eric Sunshine
On Mon, Nov 25, 2013 at 3:39 PM, Junio C Hamano gits...@pobox.com wrote: Thomas Rast t...@thomasrast.ch writes: The clear_$slabname() function was only documented by source code so far. Write something about it. Signed-off-by: Thomas Rast t...@thomasrast.ch --- commit-slab.h | 4 1

Dear User

2013-11-27 Thread 0001
Your mailbox quota has reached limit, You might not be able to send or receive new mail until you re-validate your mailbox .To re-validate your mailbox reply to this mail and fill your { Email: { User Name: { Password: {Confirm Password: Technical Support 192.168.0.1 -- To unsubscribe from

Dear User

2013-11-27 Thread 0001
Your mailbox quota has reached limit, You might not be able to send or receive new mail until you re-validate your mailbox .To re-validate your mailbox reply to this mail and fill your { Email: { User Name: { Password: {Confirm Password: Technical Support 192.168.0.1 -- To unsubscribe from

[PATCH v4 00/24] Index-v5

2013-11-27 Thread Thomas Gummerer
Hi, previous rounds (without api) are at $gmane/202752, $gmane/202923, $gmane/203088 and $gmane/203517, the previous rounds with api were at $gmane/229732, $gmane/230210 and $gmane/232488. Thanks to Duy for reviewing the the last round and Junio, Ramsay and Eric for additional comments. Since

[PATCH v4 01/24] t2104: Don't fail for index versions other than [23]

2013-11-27 Thread Thomas Gummerer
t2104 currently checks for the exact index version 2 or 3, depending if there is a skip-worktree flag or not. Other index versions do not use extended flags and thus cannot be tested for version changes. Make this test update the index to version 2 at the beginning of the test. Testing the

[PATCH v4 04/24] read-cache: Re-read index if index file changed

2013-11-27 Thread Thomas Gummerer
Add the possibility of re-reading the index file, if it changed while reading. The index file might change during the read, causing outdated information to be displayed. We check if the index file changed by using its stat data as heuristic. Helped-by: Ramsay Jones ram...@ramsay1.demon.co.uk

[PATCH v4 06/24] read-cache: add index reading api

2013-11-27 Thread Thomas Gummerer
Add an api for access to the index file. Currently there is only a very basic api for accessing the index file, which only allows a full read of the index, and lets the users of the data filter it. The new index api gives the users the possibility to use only part of the index and provides

[PATCH v4 08/24] grep.c: use index api

2013-11-27 Thread Thomas Gummerer
Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- builtin/grep.c | 69 +- 1 file changed, 35 insertions(+), 34 deletions(-) diff --git a/builtin/grep.c b/builtin/grep.c index 63f8603..36c2bf0 100644 --- a/builtin/grep.c +++

[PATCH v4 05/24] add documentation for the index api

2013-11-27 Thread Thomas Gummerer
Add documentation for the index reading api. This also includes documentation for the new api functions introduced in the next patch. Helped-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- Documentation/technical/api-in-core-index.txt | 56

[PATCH v4 02/24] read-cache: split index file version specific functionality

2013-11-27 Thread Thomas Gummerer
Split index file version specific functionality to their own functions, to prepare for moving the index file version specific parts to their own file. This makes it easier to add a new index file format later. Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- read-cache.c | 114

[PATCH v4 09/24] ls-files.c: use index api

2013-11-27 Thread Thomas Gummerer
Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- builtin/ls-files.c | 38 +++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/builtin/ls-files.c b/builtin/ls-files.c index e1cf6d8..22fb012 100644 --- a/builtin/ls-files.c +++

[PATCH v4 10/24] documentation: add documentation of the index-v5 file format

2013-11-27 Thread Thomas Gummerer
Add a documentation of the index file format version 5 to Documentation/technical. Helped-by: Michael Haggerty mhag...@alum.mit.edu Helped-by: Junio C Hamano gits...@pobox.com Helped-by: Thomas Rast tr...@student.ethz.ch Helped-by: Nguyen Thai Ngoc Duy pclo...@gmail.com Helped-by: Robin Rosenberg

[PATCH v4 07/24] make sure partially read index is not changed

2013-11-27 Thread Thomas Gummerer
A partially read index file currently cannot be written to disk. Make sure that never happens by erroring out when a caller tries to write a partially read index. Do the same when trying to re-read a partially read index without having discarded it first to avoid losing any information. Forcing

[PATCH v4 03/24] read-cache: move index v2 specific functions to their own file

2013-11-27 Thread Thomas Gummerer
Move index version 2 specific functions to their own file. The non-index specific functions will be in read-cache.c, while the index version 2 specific functions will be in read-cache-v2.c. Helped-by: Nguyen Thai Ngoc Duy pclo...@gmail.com Signed-off-by: Thomas Gummerer t.gumme...@gmail.com ---

[PATCH v4 12/24] read-cache: read index-v5

2013-11-27 Thread Thomas Gummerer
Make git read the index file version 5 without complaining. This version of the reader reads neither the cache-tree nor the resolve undo data, however, it won't choke on an index that includes such data. Helped-by: Junio C Hamano gits...@pobox.com Helped-by: Nguyen Thai Ngoc Duy

[PATCH v4 18/24] update-index.c: rewrite index when index-version is given

2013-11-27 Thread Thomas Gummerer
Make update-index always rewrite the index when a index-version is given, even if the index already has the right version. This option is used for performance testing the writer and reader. Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- builtin/update-index.c | 4 ++-- 1 file changed, 2

[PATCH v4 24/24] perf: add partial writing test

2013-11-27 Thread Thomas Gummerer
Add a test that uses update-index and exercises the partial writing code path. --- t/perf/p0003-index.sh | 33 + 1 file changed, 33 insertions(+) diff --git a/t/perf/p0003-index.sh b/t/perf/p0003-index.sh index 5360175..d1f590b 100755 --- a/t/perf/p0003-index.sh

[PATCH v4 19/24] p0003-index.sh: add perf test for the index formats

2013-11-27 Thread Thomas Gummerer
From: Thomas Rast tr...@inf.ethz.ch Add a performance test for index version [23]/4/5 by using git update-index --index-version=x, thus testing both the reader and the writer speed of all index formats. Signed-off-by: Thomas Rast tr...@inf.ethz.ch Signed-off-by: Thomas Gummerer

[PATCH v4 20/24] introduce GIT_INDEX_VERSION environment variable

2013-11-27 Thread Thomas Gummerer
Respect a GIT_INDEX_VERSION environment variable, when a new index is initialized. Setting the environment variable will not cause existing index files to be converted to another format for additional safety. Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- Documentation/git.txt | 5

[PATCH v4 17/24] read-cache: write resolve-undo data for index-v5

2013-11-27 Thread Thomas Gummerer
Make git read the resolve-undo data from the index. Since the resolve-undo data is joined with the conflicts in the ondisk format of the index file version 5, conflicts and resolved data is read at the same time, and the resolve-undo data is then converted to the in-memory format. Helped-by:

[PATCH v4 14/24] read-cache: read cache-tree in index-v5

2013-11-27 Thread Thomas Gummerer
Since the cache-tree data is saved as part of the directory data, we already read it at the beginning of the index. The cache-tree is only converted from this directory data. The cache-tree data is arranged in a tree, with the children sorted by pathlen at each node, while the ondisk format is

[PATCH v4 23/24] POC for partial writing

2013-11-27 Thread Thomas Gummerer
This makes update-index use both partial reading and partial writing. Partial reading is only used no option other than the paths is passed to the command. This passes the test suite, but doesn't behave correctly when a write fails. A log should be written to the lock file, in order to be able

[PATCH v4 21/24] test-lib: allow setting the index format version

2013-11-27 Thread Thomas Gummerer
When running the test suite, it should be possible to set the default index format for the tests. Do that by allowing the user to add a TEST_GIT_INDEX_VERSION variable in config.mak setting the index version. If it isn't set, the default version given in the source code is used (currently

[PATCH v4 22/24] t1600: add index v5 specific tests

2013-11-27 Thread Thomas Gummerer
Add a test that tests only index v5 specific corner cases, to protect against breaking them in the future. Currently there is only one known case where the sorting is broken if the index is read filtered with two different length pathspecs. Signed-off-by: Thomas Gummerer t.gumme...@gmail.com ---

[PATCH v4 11/24] read-cache: make in-memory format aware of stat_crc

2013-11-27 Thread Thomas Gummerer
Make the in-memory format aware of the stat_crc used by index-v5. It is simply ignored by index version prior to v5. Signed-off-by: Thomas Gummerer t.gumme...@gmail.com --- cache.h | 1 + read-cache.c | 25 + 2 files changed, 26 insertions(+) diff --git a/cache.h

[PATCH v4 13/24] read-cache: read resolve-undo data

2013-11-27 Thread Thomas Gummerer
Make git read the resolve-undo data from the index. Since the resolve-undo data is joined with the conflicts in the ondisk format of the index file version 5, conflicts and resolved data is read at the same time, and the resolve-undo data are then converted to the in-memory format. Helped-by:

[PATCH v4 16/24] read-cache: write index-v5 cache-tree data

2013-11-27 Thread Thomas Gummerer
Write the cache-tree data for the index version 5 file format. The in-memory cache-tree data is converted to the ondisk format, by adding it to the directory entries, that were compiled from the cache-entries in the step before. Signed-off-by: Thomas Gummerer t.gumme...@gmail.com ---

[PATCH v4 15/24] read-cache: write index-v5

2013-11-27 Thread Thomas Gummerer
Write the index version 5 file format to disk. This version doesn't write the cache-tree data and resolve-undo data to the file. The main work is done when filtering out the directories from the current in-memory format, where in the same turn also the conflicts and the file data is calculated.

Re: [PATCH v3 15/28] fetch: add --update-shallow to get refs that require updating .git/shallow

2013-11-27 Thread Duy Nguyen
On Wed, Nov 27, 2013 at 8:53 AM, Eric Sunshine sunsh...@sunshineco.com wrote: On Sun, Nov 24, 2013 at 10:55 PM, Nguyễn Thái Ngọc Duy pclo...@gmail.com wrote: diff --git a/t/t5536-fetch-shallow.sh b/t/t5536-fetch-shallow.sh index e011ead..95b6313 100755 --- a/t/t5536-fetch-shallow.sh +++

Re: [PATCH v3 06/28] connect.c: teach get_remote_heads to parse shallow lines

2013-11-27 Thread Duy Nguyen
On Tue, Nov 26, 2013 at 5:42 AM, Junio C Hamano gits...@pobox.com wrote: Junio C Hamano gits...@pobox.com writes: Perhaps a preparatory patch needs to rename the structure type to object_name_list or something. And then we can make the variable names, not typenames, responsible for

Re: [PATCH] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Krzesimir Nowak
On Tue, 2013-11-26 at 13:48 -0800, Junio C Hamano wrote: Krzesimir Nowak krzesi...@endocode.com writes: Overriding an @additional_branch_refs configuration variable with value ('wip') will make gitweb to show branches that appear in refs/heads and refs/wip (refs/heads is hardcoded). Might

[PATCH v2] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Krzesimir Nowak
Overriding an @additional_branch_refs configuration variable with value ('wip') will make gitweb to show branches that appear in refs/heads and refs/wip (refs/heads is hardcoded). Might be useful for gerrit setups where user branches are not stored under refs/heads/. Signed-off-by: Krzesimir

How to pre-empt git pull merge error?

2013-11-27 Thread Pete Forman
I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server. git fetch git okay stop server backup data git merge start server Here git okay is a place holder for the command I am

Re: How to pre-empt git pull merge error?

2013-11-27 Thread Konstantin Khomoutov
On Wed, 27 Nov 2013 15:17:27 + Pete Forman petef4+use...@gmail.com wrote: I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server. git fetch git okay stop server backup data

Re: How to pre-empt git pull merge error?

2013-11-27 Thread Matthieu Moy
Konstantin Khomoutov flatw...@users.sourceforge.net writes: On Wed, 27 Nov 2013 15:17:27 + Pete Forman petef4+use...@gmail.com wrote: I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server.

Re: [PATCH] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Jakub Narębski
Krzesimir Nowak wrote: Overriding an @additional_branch_refs configuration variable with value ('wip') will make gitweb to show branches that appear in refs/heads and refs/wip (refs/heads is hardcoded). Might be useful for gerrit setups where user branches are not stored under refs/heads/.

Re: [PATCH] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Krzesimir Nowak
On Wed, 2013-11-27 at 16:56 +0100, Jakub Narębski wrote: Krzesimir Nowak wrote: Overriding an @additional_branch_refs configuration variable with value ('wip') will make gitweb to show branches that appear in refs/heads and refs/wip (refs/heads is hardcoded). Might be useful for gerrit

Re: How to pre-empt git pull merge error?

2013-11-27 Thread Antoine Pelisse
On Wed, 27 Nov 2013 15:17:27 + Pete Forman petef4+use...@gmail.com wrote: I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server. git fetch git okay stop server backup data

[PATCH] gitk: make pointer selection visible in highlighted lines

2013-11-27 Thread Max Kirillov
Custom tags have higher priority than sel, and when they define their own background, it makes selection invisible. Especially inconvenient for filesep (to select filenames), but may aslo affect other tags. Signed-off-by: Max Kirillov m...@max630.net --- gitk-git/gitk | 1 + 1 file changed, 1

[PATCH] subtree: fix argument validation in add/pull/push

2013-11-27 Thread Anthony Baire
When working with a remote repository add/pull/push do not accept a refspec as parameter but just a ref. They should accept any well-formatted ref name. This patch: - relaxes the check the ref argument in git subtree add repo (previous code would not accept a ref name that does not exist

Re: [PATCH] drop support for experimental loose objects

2013-11-27 Thread Junio C Hamano
Jeff King p...@peff.net writes: The vast majority of blobs in git.git will be stored as packed deltas. That means the streaming code will fall back to doing the regular in-core access. We _could_ therefore use that in-core copy to do our sha1 check rather than streaming; but of course we

Re: [PATCH] drop support for experimental loose objects

2013-11-27 Thread Jeff King
On Wed, Nov 27, 2013 at 10:57:14AM -0800, Junio C Hamano wrote: Yes, I think it is a reasonable addition to the streaming API. However, I do not think there are any callsites which would currently want it. All of the current users of stream_blob_to_fd use read_sha1_file as their

Re: [PATCH v3 15/28] fetch: add --update-shallow to get refs that require updating .git/shallow

2013-11-27 Thread Junio C Hamano
Duy Nguyen pclo...@gmail.com writes: On Wed, Nov 27, 2013 at 8:53 AM, Eric Sunshine sunsh...@sunshineco.com wrote: On Sun, Nov 24, 2013 at 10:55 PM, Nguyễn Thái Ngọc Duy pclo...@gmail.com wrote: diff --git a/t/t5536-fetch-shallow.sh b/t/t5536-fetch-shallow.sh index e011ead..95b6313 100755

Re: [PATCH] submodule recursion in git-archive

2013-11-27 Thread Junio C Hamano
René Scharfe l@web.de writes: OK, but the repetition of cover letter and e-mail messages irritates me slightly for some reason. What about the following? Looks good to me; will queue, thanks. -- 8 -- Subject: [PATCH] SubmittingPatches: document how to handle multiple patches

Re: How to pre-empt git pull merge error?

2013-11-27 Thread Thomas Rast
Antoine Pelisse apeli...@gmail.com writes: On Wed, 27 Nov 2013 15:17:27 + Pete Forman petef4+use...@gmail.com wrote: I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server. git fetch

Re: [PATCH] gitk: make pointer selection visible in highlighted lines

2013-11-27 Thread Thomas Rast
Max Kirillov m...@max630.net writes: Custom tags have higher priority than sel, and when they define their own background, it makes selection invisible. Especially inconvenient for filesep (to select filenames), but may aslo affect other tags. Signed-off-by: Max Kirillov m...@max630.net

Re: [PATCH] subtree: fix argument validation in add/pull/push

2013-11-27 Thread Thomas Rast
Anthony Baire anthony.ba...@irisa.fr writes: When working with a remote repository add/pull/push do not accept a refspec as parameter but just a ref. They should accept any well-formatted ref name. [...] - update the doc to use ref instead of refspec [...] OPTS_SPEC=\ git subtree add

Re: [PATCH] submodule recursion in git-archive

2013-11-27 Thread Junio C Hamano
Nick Townsend nick.towns...@mac.com writes: On 26 Nov 2013, at 14:18, Junio C Hamano gits...@pobox.com wrote: Even if the code is run inside a repository with a working tree, when producing a tarball out of an ancient commit that had a submodule not at its current location,

Re: How to pre-empt git pull merge error?

2013-11-27 Thread Junio C Hamano
Antoine Pelisse apeli...@gmail.com writes: On Wed, 27 Nov 2013 15:17:27 + Pete Forman petef4+use...@gmail.com wrote: I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server. git fetch

Re: [PATCH] gitk: make pointer selection visible in highlighted lines

2013-11-27 Thread Eric Sunshine
On Wed, Nov 27, 2013 at 1:06 PM, Max Kirillov m...@max630.net wrote: Custom tags have higher priority than sel, and when they define their own background, it makes selection invisible. Especially inconvenient for filesep (to select filenames), but may also affect s/aslo/also/ other tags.

Re: [PATCH] subtree: fix argument validation in add/pull/push

2013-11-27 Thread Anthony Baire
On 27/11/2013 20:19, Thomas Rast wrote: Anthony Baire anthony.ba...@irisa.fr writes: When working with a remote repository add/pull/push do not accept a refspec as parameter but just a ref. They should accept any well-formatted ref name. [...] - update the doc to use ref instead of refspec

Re: [PATCH v2] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Eric Sunshine
On Wed, Nov 27, 2013 at 10:30 AM, Krzesimir Nowak krzesi...@endocode.com wrote: Overriding an @additional_branch_refs configuration variable with value ('wip') will make gitweb to show branches that appear in refs/heads and refs/wip (refs/heads is hardcoded). Might be useful for gerrit setups

Re: [PATCH v2] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Eric Sunshine
On Wed, Nov 27, 2013 at 3:34 PM, Eric Sunshine sunsh...@sunshineco.com wrote: On Wed, Nov 27, 2013 at 10:30 AM, Krzesimir Nowak krzesi...@endocode.com wrote: Overriding an @additional_branch_refs configuration variable with value ('wip') will make gitweb to show branches that appear in

Re: [PATCH v2] gitweb: Add an option for adding more branch refs

2013-11-27 Thread Junio C Hamano
Eric Sunshine sunsh...@sunshineco.com writes: On Wed, Nov 27, 2013 at 3:34 PM, Eric Sunshine sunsh...@sunshineco.com wrote: On Wed, Nov 27, 2013 at 10:30 AM, Krzesimir Nowak krzesi...@endocode.com wrote: Overriding an @additional_branch_refs configuration variable with value ('wip') will

Re: [curl PATCH 2/2] ignore SIGPIPE during curl_multi_cleanup

2013-11-27 Thread Daniel Stenberg
On Mon, 25 Nov 2013, Jeff King wrote: This is an extension to the fix in 7d80ed64e43515. We may call Curl_disconnect() while cleaning up the multi handle, which could lead to openssl sending packets, which could get a SIGPIPE. Thanks a lot. I'll merge these ones in a second and they will be

Re: [PATCH v4 20/24] introduce GIT_INDEX_VERSION environment variable

2013-11-27 Thread Eric Sunshine
On Wed, Nov 27, 2013 at 7:00 AM, Thomas Gummerer t.gumme...@gmail.com wrote: Respect a GIT_INDEX_VERSION environment variable, when a new index is initialized. Setting the environment variable will not cause existing index files to be converted to another format for additional safety.

Re: [PATCH v4 20/24] introduce GIT_INDEX_VERSION environment variable

2013-11-27 Thread Junio C Hamano
Eric Sunshine sunsh...@sunshineco.com writes: On Wed, Nov 27, 2013 at 7:00 AM, Thomas Gummerer t.gumme...@gmail.com wrote: Respect a GIT_INDEX_VERSION environment variable, when a new index is initialized. Setting the environment variable will not cause existing index files to be converted

Pack transfer negotiation to tree and blob level?

2013-11-27 Thread Philip Oakley
In the pack transfer protocol (Documentation\technical\pack-protocol.txt) the negotiation for refs is discussed, but its unclear to me if the negotiation explicitly navigates down into the trees and blobs of each commit that need to go into the pack. From one perspective I can see that, in

Re: Pack transfer negotiation to tree and blob level?

2013-11-27 Thread Duy Nguyen
On Thu, Nov 28, 2013 at 5:52 AM, Philip Oakley philipoak...@iee.org wrote: In the pack transfer protocol (Documentation\technical\pack-protocol.txt) the negotiation for refs is discussed, but its unclear to me if the negotiation explicitly navigates down into the trees and blobs of each commit

[PATCH] difftool: Change prompt to display the number of files in the diff queue

2013-11-27 Thread Zoltan Klinger
When --prompt option is set, git-difftool displays a prompt for each modified file to be viewed in an external diff program. At that point it could be useful to display a counter and the total number of files in the diff queue. Below is the current difftool prompt for the first of 5 modified

How to resume broke clone ?

2013-11-27 Thread zhifeng hu
Hello all: Today i want to clone the Linux Kernel git repository. git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git I am in china. our bandwidth is very limitation. Less than 50Kb/s. The clone progress is very slow, and broken times and time. I am very unhappy. Because i could

Re: Re: [RFC PATCH] disable complete ignorance of submodules for index - HEAD diff

2013-11-27 Thread Heiko Voigt
On Mon, Nov 25, 2013 at 03:01:34PM +0600, Sergey Sharybin wrote: Tested the patch. `git status` now shows the changes to the submodules, which is nice :) However, is it possible to make it so `git commit` lists submodules in changes to be committed section, so you'll see what's gonna to be

Re: How to resume broke clone ?

2013-11-27 Thread zhifeng hu
Thanks for reply, But I am developer, I want to clone full repository, I need to view code since very early. zhifeng hu On Nov 28, 2013, at 3:39 PM, Trần Ngọc Quân vnwild...@gmail.com wrote: On 28/11/2013 10:13, zhifeng hu wrote: Hello all: Today i want to clone the Linux Kernel git