Re: [PATCH 2/4] pack v4: add v4_size to struct delta_base_cache_entry

2013-09-15 Thread Duy Nguyen
On Sat, Sep 14, 2013 at 11:22 AM, Nicolas Pitre n...@fluxnic.net wrote: The cache is currently updated by the caller. The caller may ask for a copy of 2 entries from a base object, but that base object may itself copy those objects from somewhere else in a larger chunk. Let's consider this

Re: [PATCH] diff: add a config option to control orderfile

2013-09-15 Thread Michael S. Tsirkin
On Wed, Sep 04, 2013 at 12:08:15AM +0300, Michael S. Tsirkin wrote: On Tue, Sep 03, 2013 at 10:12:18AM -0700, Junio C Hamano wrote: Michael S. Tsirkin m...@redhat.com writes: I always want my diffs to show header files first, then .c files, then the rest. Make it possible to set

Re: [PATCH] diff: add a config option to control orderfile

2013-09-15 Thread Michael S. Tsirkin
On Sun, Sep 15, 2013 at 10:49:00AM +0300, Michael S. Tsirkin wrote: On Wed, Sep 04, 2013 at 12:08:15AM +0300, Michael S. Tsirkin wrote: On Tue, Sep 03, 2013 at 10:12:18AM -0700, Junio C Hamano wrote: Michael S. Tsirkin m...@redhat.com writes: I always want my diffs to show header

Re: [PATCH] branch: use $curr_branch_short more

2013-09-15 Thread René Scharfe
Am 09.09.2013 01:13, schrieb Felipe Contreras: On Sun, Sep 8, 2013 at 10:21 AM, René Scharfe l@web.de wrote: Am 31.08.2013 19:20, schrieb Felipe Contreras: A summary should contain as much information that would allow me to skip the commit message as possible. If I can't tell from the

Re: [PATCH 1/2] repack: rewrite the shell script in C

2013-09-15 Thread René Scharfe
Am 29.08.2013 22:39, schrieb Stefan Beller: The motivation of this patch is to get closer to a goal of being able to have a core subset of git functionality built in to git. That would mean * people on Windows could get a copy of at least the core parts of Git without having to install a

Re: Pls Reply Soon!

2013-09-15 Thread mslizawong
i have a business proposal for you, write me back for more info. -Sent from my ipad. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] git-compat-util: Avoid strcasecmp() being inlined

2013-09-15 Thread Sebastian Schuberth
On Sat, Sep 14, 2013 at 12:06 AM, Junio C Hamano gits...@pobox.com wrote: You can explicitly include the system header from your compatibility layer, i.e. === compat/mingw/string.h === #define __NO_INLINE__ #ifdef SYSTEM_STRING_H_HEADER #include

Re: [PATCH] branch: use $curr_branch_short more

2013-09-15 Thread Felipe Contreras
On Sun, Sep 15, 2013 at 6:42 AM, René Scharfe l@web.de wrote: Am 09.09.2013 01:13, schrieb Felipe Contreras: On Sun, Sep 8, 2013 at 10:21 AM, René Scharfe l@web.de wrote: Am 31.08.2013 19:20, schrieb Felipe Contreras: A summary should contain as much information that would allow me

Re: [PATCH 1/2] repack: rewrite the shell script in C

2013-09-15 Thread Stefan Beller
Rene, thank you very much for the review! On 09/15/2013 01:42 PM, René Scharfe wrote: +static void remove_temporary_files(void) +{ +struct strbuf buf = STRBUF_INIT; +size_t dirlen, prefixlen; +DIR *dir; +struct dirent *e; + +dir = opendir(packdir); +if (!dir) +

[PATCH 2/3] repack: retain the return value of pack-objects

2013-09-15 Thread Stefan Beller
During the review process of the previous commit (repack: rewrite the shell script in C), Johannes Sixt proposed to retain any exit codes from the sub-process, which makes it probably more obvious in case of failure. As the commit before should behave as close to the original shell script, the

[PATCH 1/3] repack: rewrite the shell script in C

2013-09-15 Thread Stefan Beller
The motivation of this patch is to get closer to a goal of being able to have a core subset of git functionality built in to git. That would mean * people on Windows could get a copy of at least the core parts of Git without having to install a Unix-style shell * people using git in on

[PATCH 3/3] repack: improve warnings about failure of renaming and removing files

2013-09-15 Thread Stefan Beller
Signed-off-by: Stefan Beller stefanbel...@googlemail.com --- builtin/repack.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/builtin/repack.c b/builtin/repack.c index d345d16..f7e91bf 100644 --- a/builtin/repack.c +++ b/builtin/repack.c @@ -327,7 +327,7 @@ int

[PATCH 2/3] t7406-submodule-update: demonstrate behaviour when run without init beforehand

2013-09-15 Thread Tay Ray Chuan
Signed-off-by: Tay Ray Chuan rcta...@gmail.com --- t/t7406-submodule-update.sh | 20 1 file changed, 20 insertions(+) diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index f0b3305..00475eb 100755 --- a/t/t7406-submodule-update.sh +++

[PATCH 3/3] git submodule update should give notice when run without init beforehand

2013-09-15 Thread Tay Ray Chuan
When 'update' is run with no path in a repository with uninitialized submodules, the program terminates with no output, and zero status code. Be more helpful to users by mentioning this. This may be controlled by an advice.* option. Signed-off-by: Tay Ray Chuan rcta...@gmail.com ---

[PATCH 1/3] t7406-submodule-update: add missing

2013-09-15 Thread Tay Ray Chuan
322bb6e (2011 Aug 11) introduced a new subshell at the end of a test case but omitted a '' to join the two; fix this. Signed-off-by: Tay Ray Chuan rcta...@gmail.com --- t/t7406-submodule-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t7406-submodule-update.sh

Re: [PATCH 1/3] repack: rewrite the shell script in C

2013-09-15 Thread Ramkumar Ramachandra
Stefan Beller wrote: Makefile | 2 +- builtin.h | 1 + builtin/repack.c | 387 + contrib/examples/git-repack.sh | 194 + git-repack.sh | 194

1.8.4 rebase regression?

2013-09-15 Thread Patrick Welche
I just upgraded (via pkgsrc) from git 1.8.3.4 to 1.8.4. With 1.8.4, I had local changes in glib, did a git pull --rebase. Some of my changes conflicted, but $ git rebase --abort No rebase in progress? so somehow the usual process of amending the edit, or skipping the patch no longer works. I

Re: [PATCH 2/4] pack v4: add v4_size to struct delta_base_cache_entry

2013-09-15 Thread Nicolas Pitre
On Sun, 15 Sep 2013, Duy Nguyen wrote: On Sat, Sep 14, 2013 at 11:22 AM, Nicolas Pitre n...@fluxnic.net wrote: The cache is currently updated by the caller. The caller may ask for a copy of 2 entries from a base object, but that base object may itself copy those objects from somewhere

Re: [PATCH 2/4] pack v4: add v4_size to struct delta_base_cache_entry

2013-09-15 Thread Duy Nguyen
On Mon, Sep 16, 2013 at 11:42 AM, Nicolas Pitre n...@fluxnic.net wrote: On Sun, 15 Sep 2013, Duy Nguyen wrote: On Sat, Sep 14, 2013 at 11:22 AM, Nicolas Pitre n...@fluxnic.net wrote: The cache is currently updated by the caller. The caller may ask for a copy of 2 entries from a base

Gerade liebe Schuhe

2013-09-15 Thread Jomenl
Dies kann vor allem durch extreme tatsächlichen Heels dann eingeschränkt Damenschuhen , ansonsten beschränkte Strategie Herrenschuhe, während irritierend und auch verletzen alle nehmen insgesamt gelten . Dennoch gibt es zahlreiche Designs, die einfach hergestellt werden, aber stilvoll, und sie