[PATCH 09/24] ewah: add convenient wrapper ewah_serialize_strbuf()

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- ewah/ewah_io.c | 13 + ewah/ewok.h| 2 ++ split-index.c | 11 ++- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/ewah/ewah_io.c b/ewah/ewah_io.c

[PATCH 06/24] untracked cache: record/validate dir mtime and reuse cached output

2015-01-20 Thread Nguyễn Thái Ngọc Duy
The main readdir loop in read_directory_recursive() is replaced with a new one that checks if cached results of a directory is still valid. If a file is added or removed from the index, the containing directory is invalidated (but not its subdirs). If directory's mtime is changed, the same

[PATCH 08/24] untracked cache: don't open non-existent .gitignore

2015-01-20 Thread Nguyễn Thái Ngọc Duy
This cuts down a signficant number of open(.gitignore) because most directories usually don't have .gitignore files. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- dir.c | 26 +- 1 file changed, 25 insertions(+),

[PATCH 10/24] untracked cache: save to an index extension

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- Documentation/technical/index-format.txt | 58 + cache.h | 3 + dir.c| 136 +++ dir.h| 1

[PATCH 04/24] untracked cache: invalidate dirs recursively if .gitignore changes

2015-01-20 Thread Nguyễn Thái Ngọc Duy
It's easy to see that if an existing .gitignore changes, its SHA-1 would be different and invalidate_gitignore() is called. If .gitignore is removed, add_excludes() will treat it like an empty .gitignore, which again should invalidate the cached directory data. if .gitignore is added,

[PATCH 05/24] untracked cache: make a wrapper around {open,read,close}dir()

2015-01-20 Thread Nguyễn Thái Ngọc Duy
This allows us to feed different info to read_directory_recursive() based on untracked cache in the next patch. Helped-by: Ramsay Jones ram...@ramsay1.demon.co.uk Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- dir.c | 55

[PATCH 07/24] untracked cache: mark what dirs should be recursed/saved

2015-01-20 Thread Nguyễn Thái Ngọc Duy
If we redo this thing in a functional style, we would have one struct untracked_dir as input tree and another as output. The input is used for verification. The output is a brand new tree, reflecting current worktree. But that means recreate a lot of dir nodes even if a lot could be shared

[PATCH 11/24] untracked cache: load from UNTR index extension

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- dir.c| 220 +++ dir.h| 2 + read-cache.c | 5 ++ 3 files changed, 227 insertions(+) diff --git a/dir.c b/dir.c index 1f2d701..e7d7df3 100644 --- a/dir.c +++

[PATCH 03/24] untracked cache: initial untracked cache validation

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Make sure the starting conditions and all global exclude files are good to go. If not, either disable untracked cache completely, or wipe out the cache and start fresh. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- dir.c | 113

[PATCHv2] rebase -i: respect core.abbrev for real

2015-01-20 Thread Kirill A. Shutemov
I have tried to fix this before: see 568950388be2, but it doesn't really work. I don't know how it happend, but that commit makes interactive rebase to respect core.abbrev only during --edit-todo, but not the initial todo list edit. For this time I've included a test-case to avoid this

[PATCH 19/24] update-index: manually enable or disable untracked cache

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Overall time saving on git status is about 40% in the best case scenario, removing ..collect_untracked() as the most time consuming function. read and refresh index operations are now at the top (which should drop when index-helper and/or watchman support is added). More numbers and analysis

[PATCH 16/24] untracked cache: mark index dirty if untracked cache is updated

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- cache.h | 1 + dir.c| 9 + read-cache.c | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/cache.h b/cache.h index f8b3dc5..fca979b 100644 ---

[PATCH 24/24] git-status.txt: advertisement for untracked cache

2015-01-20 Thread Nguyễn Thái Ngọc Duy
When a good user sees the too long, consider -uno advice when running `git status`, they should check out the man page to find out more. This change suggests they try untracked cache before -uno. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- Documentation/git-status.txt | 5 - 1

[PATCH 12/24] untracked cache: invalidate at index addition or removal

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Ideally we should implement untracked_cache_remove_from_index() and untracked_cache_add_to_index() so that they update untracked cache right away instead of invalidating it and wait for read_directory() next time to deal with it. But that may need some more work in unpack-trees.c. So stay simple

[PATCH 13/24] read-cache.c: split racy stat test to a separate function

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- read-cache.c | 24 +++- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/read-cache.c b/read-cache.c index d643a3f..f12a185 100644 --- a/read-cache.c +++

[PATCH 22/24] mingw32: add uname()

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Helped-by: Eric Sunshine sunsh...@sunshineco.com Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- compat/mingw.c | 11 +++ compat/mingw.h | 9 + 2 files changed, 20 insertions(+) diff --git a/compat/mingw.c

[PATCH 23/24] untracked cache: guard and disable on system changes

2015-01-20 Thread Nguyễn Thái Ngọc Duy
If the user enables untracked cache, then - move worktree to an unsupported filesystem - or simply upgrade OS - or move the whole (portable) disk from one machine to another - or access a shared fs from another machine there's no guarantee that untracked cache can still function properly.

[PATCH 21/24] t7063: tests for untracked cache

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- .gitignore | 1 + Makefile | 1 + t/t7063-status-untracked-cache.sh (new +x) | 353 +

[PATCH 15/24] untracked cache: print stats with $GIT_TRACE_UNTRACKED_STATS

2015-01-20 Thread Nguyễn Thái Ngọc Duy
This could be used to verify correct behavior in tests Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- dir.c | 12 1 file changed, 12 insertions(+) diff --git a/dir.c b/dir.c index 439ff22..c5ca5ce 100644 --- a/dir.c +++

[PATCH 14/24] untracked cache: avoid racy timestamps

2015-01-20 Thread Nguyễn Thái Ngọc Duy
When a directory is updated within the same second that its timestamp is last saved, we cannot realize the directory has been updated by checking timestamps. Assume the worst (something is update). See 29e4d36 (Racy GIT - 2005-12-20) for more information. Signed-off-by: Nguyễn Thái Ngọc Duy

[PATCH 20/24] update-index: test the system before enabling untracked cache

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Helped-by: Eric Sunshine sunsh...@sunshineco.com Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- Documentation/git-update-index.txt | 6 ++ builtin/update-index.c | 148 + 2 files changed,

[PATCH 17/24] untracked-cache: temporarily disable with $GIT_DISABLE_UNTRACKED_CACHE

2015-01-20 Thread Nguyễn Thái Ngọc Duy
This can be used to double check if results with untracked cache are correctly, compared to vanilla version. Untracked cache remains in index, but not used. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- dir.c | 2 +- 1 file changed, 1

[PATCH 18/24] status: enable untracked cache

2015-01-20 Thread Nguyễn Thái Ngọc Duy
update_index_if_able() is moved down so that the updated untracked cache could be written out. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com Signed-off-by: Junio C Hamano gits...@pobox.com --- builtin/commit.c | 5 +++-- wt-status.c | 2 ++ 2 files changed, 5 insertions(+), 2

[PATCH 01/24] dir.c: optionally compute sha-1 of a .gitignore file

2015-01-20 Thread Nguyễn Thái Ngọc Duy
This is not used anywhere yet. But the goal is to compare quickly if a .gitignore file has changed when we have the SHA-1 of both old (cached somewhere) and new (from index or a tree) versions. Helped-by: Junio C Hamano gits...@pobox.com Helped-by: Torsten Bögershausen tbo...@web.de

[PATCH 02/24] untracked cache: record .gitignore information and dir hierarchy

2015-01-20 Thread Nguyễn Thái Ngọc Duy
The idea is if we can capture all input and (non-rescursive) output of read_directory_recursive(), and can verify later that all the input is the same, then the second r_d_r() should produce the same output as in the first run. The requirement for this to work is stat info of a directory MUST

[PATCH 00/24] nd/untracked-cache update

2015-01-20 Thread Nguyễn Thái Ngọc Duy
Sorry for this really late update. This fixes bugs in extension writing code (10/24), support using the same cache from different hosts (23/24), and adds a new bug to point the user to untracked cache from 'git status -uno' (new patch 24/24) Diff from 'pu' -- 8 -- diff --git

[ANNOUNCE] git-arr 0.14

2015-01-20 Thread Alberto Bertogli
Hi! git-arr is a git repository browser that can generate static HTML instead of having to run dynamically. I've just released version 0.14, which includes minor fixes and performance improvements, as well as the following features: - Improved max_pages handling, including saner defaults. -

『BODY雜誌金纖獎』專家評鑑超人氣口碑絕對有信心!ixccbew05qzz

2015-01-20 Thread gsafgasaewtfjdsf agssaasgf
陶鈴立ixccbew05qzz 全新第四代金善美有效提升代謝, 還妳窈宨曲線,享受28腰真的不難。 『BODY雜誌金纖獎』專家評鑑超人氣口碑, 絕對有信心,天然配方安全無慮,超強力提升基礎代謝。 金善美官方網站 http://ow.ly/HpafR acezm陶鈴立 -- 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

Re: [PATCH v3] remote-curl: fall back to Basic auth if Negotiate fails

2015-01-20 Thread Dan Langille (dalangil)
I did not test this patch. Is that holding up a commit? — Dan Langille Infrastructure Operations Talos Group Sourcefire, Inc. On Jan 7, 2015, at 7:29 PM, brian m. carlson sand...@crustytoothpaste.net wrote: Apache servers using mod_auth_kerb can be configured to allow the user to

[PATCH] move MAXDEPTH definition to the cache.h

2015-01-20 Thread Alexander Kuleshov
There are a couple of source code files as abspath.c, lockfile.c and etc..., which defines MAXDEPTH macro. All of these definitions are the same, so let's move MAXDEPTH definition to the cache.h instead of directly declaration of this macro in all these files. Signed-off-by: Alexander Kuleshov

[PATCH] hash-object: add -t and --no-filters options to the hash-object synopsis

2015-01-20 Thread Alexander Kuleshov
Signed-off-by: Alexander Kuleshov kuleshovm...@gmail.com --- builtin/hash-object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/hash-object.c b/builtin/hash-object.c index 207b90c..a8100a7 100644 --- a/builtin/hash-object.c +++ b/builtin/hash-object.c @@ -80,7 +80,7

Re: Git messes up 'ø' character

2015-01-20 Thread Torsten Bögershausen
On 2015-01-20 20.46, Noralf Trønnes wrote: could it be that your ø is not encoded as UTF-8, but in ISO-8859-15 (or so) $ git log -1 commit b2a4f6abdb097c4dc092b56995a2af8e42fbea79 Author: Noralf TrF8nnes no...@tronnes.org What does git config -l | grep Noralf | xxd say ? -- To unsubscribe

Re: Git messes up 'ø' character

2015-01-20 Thread Noralf Trønnes
Den 20.01.2015 21:07, skrev Torsten Bögershausen: On 2015-01-20 20.46, Noralf Trønnes wrote: could it be that your ø is not encoded as UTF-8, but in ISO-8859-15 (or so) $ git log -1 commit b2a4f6abdb097c4dc092b56995a2af8e42fbea79 Author: Noralf TrF8nnes no...@tronnes.org What does git config

Re: Git messes up 'ø' character

2015-01-20 Thread Ævar Arnfjörð Bjarmason
On Tue, Jan 20, 2015 at 10:23 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:45, skrev Ævar Arnfjörð Bjarmason: On Tue, Jan 20, 2015 at 9:17 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:07, skrev Torsten Bögershausen: On 2015-01-20 20.46, Noralf Trønnes

Re: Git messes up 'ø' character

2015-01-20 Thread Ævar Arnfjörð Bjarmason
On Tue, Jan 20, 2015 at 10:38 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 22:26, skrev Ævar Arnfjörð Bjarmason: On Tue, Jan 20, 2015 at 10:23 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:45, skrev Ævar Arnfjörð Bjarmason: On Tue, Jan 20, 2015 at 9:17 PM,

Re: [PATCH] parse_color: fix return value for numeric color values 0-8

2015-01-20 Thread Junio C Hamano
Jeff King p...@peff.net writes: Eek. Definitely an unintended regression. The fix is below. Thanks for reporting (and especially for catching during the -rc period!). You should not need it, but for reference, using 0 is the same as black (both in old git and new). -- 8 -- When commit

Re: [PATCH] move MAXDEPTH definition to the cache.h

2015-01-20 Thread Junio C Hamano
Alexander Kuleshov kuleshovm...@gmail.com writes: There are a couple of source code files as abspath.c, lockfile.c and etc..., which defines MAXDEPTH macro. All of these definitions are the same,... Are they the same by design (because there are logical linkage between these values and there

Re: Git messes up 'ø' character

2015-01-20 Thread Greg Kroah-Hartman
On Tue, Jan 20, 2015 at 09:45:46PM +0100, Ævar Arnfjörð Bjarmason wrote: On Tue, Jan 20, 2015 at 9:17 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:07, skrev Torsten Bögershausen: On 2015-01-20 20.46, Noralf Trønnes wrote: could it be that your ø is not encoded as UTF-8,

Re: git --recurse-submodule does not recurse to sub-submodules (etc.)

2015-01-20 Thread Jens Lehmann
Am 19.01.2015 um 21:19 schrieb Maximilian Held: I have a directory with nested submodules, such as: supermodule/submodule/sub-submodule/sub-sub-submodule When I cd to supermodule and do: git push --recurse-submodule=check (or on-demand), git only pushes the submodule, but not the

Re: Git messes up 'ø' character

2015-01-20 Thread Noralf Trønnes
Den 20.01.2015 22:26, skrev Ævar Arnfjörð Bjarmason: On Tue, Jan 20, 2015 at 10:23 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:45, skrev Ævar Arnfjörð Bjarmason: On Tue, Jan 20, 2015 at 9:17 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:07, skrev Torsten

Re: [PATCH] parse_color: fix return value for numeric color values 0-8

2015-01-20 Thread Jeff King
On Tue, Jan 20, 2015 at 03:57:13PM -0800, Junio C Hamano wrote: -- 8 -- When commit 695d95d refactored the color parsing, it missed a return 0 when parsing literal numbers 0-8 (which represent basic ANSI colors), leading us to report these colors as an error. Signed-off-by: Jeff

Re: Pretty format specifier for commit count?

2015-01-20 Thread josh
On Tue, Jan 20, 2015 at 04:49:53PM -0500, Jeff King wrote: On Mon, Jan 19, 2015 at 05:17:25PM -0800, Josh Triplett wrote: Can you be a bit more specific about the type count that you are after? git describe counts commits since the most recent tag (possibly within a specific subset of

Re: Git messes up 'ø' character

2015-01-20 Thread Ævar Arnfjörð Bjarmason
On Tue, Jan 20, 2015 at 10:20 PM, Jeff King p...@peff.net wrote: On Tue, Jan 20, 2015 at 09:45:46PM +0100, Ævar Arnfjörð Bjarmason wrote: What's happened here is that: 1. You've authored your commit in ISO-8859-1 2. Git itself has no place for the encoding of the author name in the commit

[PATCH] parse_color: fix return value for numeric color values 0-8

2015-01-20 Thread Jeff King
On Tue, Jan 20, 2015 at 10:49:32PM +0100, Ævar Arnfjörð Bjarmason wrote: I've had this in my .gitconfig since 2010 which was broken by Jeff's v2.1.3-24-g695d95d: ;; Don't be so invasive about coloring ^M when I'm editing files that ;; are supposed to have \r\n. [color diff]

Re: [PATCH] show-branch: fix indentation of usage string

2015-01-20 Thread Junio C Hamano
Ralf Thielow ralf.thie...@gmail.com writes: Noticed-by: Jean-Noël Avila jn.av...@free.fr Signed-off-by: Ralf Thielow ralf.thie...@gmail.com --- Jiang Xin worldhello@gmail.com wrote: 2015-01-18 23:53 GMT+08:00 Jean-Noël AVILA jn.av...@free.fr: Yes, it's wrong to using mixed tabs and

Re: Git messes up 'ø' character

2015-01-20 Thread Jeff King
On Tue, Jan 20, 2015 at 09:45:46PM +0100, Ævar Arnfjörð Bjarmason wrote: What's happened here is that: 1. You've authored your commit in ISO-8859-1 2. Git itself has no place for the encoding of the author name in the commit object format Is (2) right? The encoding header in a commit

Re: Git messes up 'ø' character

2015-01-20 Thread Nico Williams
On Tue, Jan 20, 2015 at 10:38:40PM +0100, Noralf Trønnes wrote: Yes: $ echo Noralf Trønnes | xxd 000: 4e6f 7261 6c66 2054 72f8 6e6e 6573 0aNoralf Tr.nnes. Is there a command I can run that shows that I'm using ISO-8859-1 ? I need something to google with, my previous search only

Re: Git messes up 'ø' character

2015-01-20 Thread Noralf Trønnes
Den 20.01.2015 21:45, skrev Ævar Arnfjörð Bjarmason: On Tue, Jan 20, 2015 at 9:17 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:07, skrev Torsten Bögershausen: On 2015-01-20 20.46, Noralf Trønnes wrote: could it be that your ø is not encoded as UTF-8, but in ISO-8859-15 (or so)

Re: [ANNOUNCE] Git v2.3.0-rc0

2015-01-20 Thread Ævar Arnfjörð Bjarmason
On Tue, Jan 13, 2015 at 12:57 AM, Junio C Hamano gits...@pobox.com wrote: An early preview release Git v2.3.0-rc0 is now available for testing at the usual places. [...] Jeff King (38): [...] parse_color: refactor color storage [...] I've had this in my .gitconfig since 2010 which was

Re: Pretty format specifier for commit count?

2015-01-20 Thread Jeff King
On Mon, Jan 19, 2015 at 05:17:25PM -0800, Josh Triplett wrote: Can you be a bit more specific about the type count that you are after? git describe counts commits since the most recent tag (possibly within a specific subset of all tags). Is that your desired format? That might work,

Re: [PATCH v3] remote-curl: fall back to Basic auth if Negotiate fails

2015-01-20 Thread Junio C Hamano
Dan Langille (dalangil) dalan...@cisco.com writes: I did not test this patch. Is that holding up a commit? I am hoping that you rebuilt the Git you use with this patch by the time you wrote the message I am responding to and have been using it for your daily Git needs ;-) I believe it is

Re: [PATCH] parse_color: fix return value for numeric color values 0-8

2015-01-20 Thread Junio C Hamano
Jeff King p...@peff.net writes: Thanks; somebody should have caught this before we applied and merged to 'master', but the process obviously did not work well. I am not too surprised. The use of numeric values for colors was completely undocumented, and we did not have any test coverage for

[PATCH] update-ref: Handle large transactions properly

2015-01-20 Thread Stefan Beller
Test if we can do arbitrary large transactions. Currently this is a known bug that we cannot do large transactions, so document it at least in the test suite. Signed-off-by: Stefan Beller sbel...@google.com --- t/t1400-update-ref.sh | 27 +++ 1 file changed, 27

Re: [PATCH] update-ref: Handle large transactions properly

2015-01-20 Thread Stefan Beller
On Tue, Jan 20, 2015 at 5:20 PM, Stefan Beller sbel...@google.com wrote: Test if we can do arbitrary large transactions. Currently this is a known bug that we cannot do large transactions, so document it at least in the test suite. Signed-off-by: Stefan Beller sbel...@google.com ---

[ANNOUNCE] Git v2.3.0-rc1

2015-01-20 Thread Junio C Hamano
A release candidate Git v2.3.0-rc1 is now available for testing at the usual places. The tarballs are found at: https://www.kernel.org/pub/software/scm/git/testing/ The following public repositories all have a copy of the 'v2.3.0-rc1' tag and the 'master' branch that the tag points at:

Re: Git messes up 'ø' character

2015-01-20 Thread Noralf Trønnes
Den 20.01.2015 23:18, skrev Nico Williams: On Tue, Jan 20, 2015 at 10:38:40PM +0100, Noralf Trønnes wrote: Yes: $ echo Noralf Trønnes | xxd 000: 4e6f 7261 6c66 2054 72f8 6e6e 6573 0aNoralf Tr.nnes. Is there a command I can run that shows that I'm using ISO-8859-1 ? I need something to

[PATCH] l10n: correct indentation of show-branch usage

2015-01-20 Thread Jiang Xin
An indentation error was found right after we started l10n round 2, and commit d6589d1 (show-branch: fix indentation of usage string) and this update would fix it. Signed-off-by: Jiang Xin worldhello@gmail.com --- This patch is based on master branch of git://github.com/git-l10n/git-po

Re: Git messes up 'ø' character

2015-01-20 Thread Ævar Arnfjörð Bjarmason
On Tue, Jan 20, 2015 at 9:17 PM, Noralf Trønnes no...@tronnes.org wrote: Den 20.01.2015 21:07, skrev Torsten Bögershausen: On 2015-01-20 20.46, Noralf Trønnes wrote: could it be that your ø is not encoded as UTF-8, but in ISO-8859-15 (or so) $ git log -1 commit

bash completion for git branch/checkout/etc doesn't escape metacharacters

2015-01-20 Thread Kevin Stenerson
The bash completion provided with git doesn't escape or quote parens in tag or branch names. Alternatively, it doesn't reject branch or tag names with parenthesis as an invalid name (as it does for names with spaces or tabs) Bash treats parentheses in unquoted words as a word separator. When

Re: [PATCH] move MAXDEPTH definition to the cache.h

2015-01-20 Thread Torsten Bögershausen
--- a/cache.h +++ b/cache.h @@ -1010,6 +1010,7 @@ extern int read_ref(const char *refname, unsigned char *sha1); * Caps and underscores refers to the special refs, such as HEAD, * FETCH_HEAD and friends, that all live outside of the refs/ directory. */ What happened to the comment

Re: [PATCH 00/24] nd/untracked-cache update

2015-01-20 Thread Torsten Bögershausen
On 2015-01-20 14.03, Nguyễn Thái Ngọc Duy wrote: Sorry for this really late update. This fixes bugs in extension writing code (10/24), support using the same cache from different hosts (23/24), and adds a new bug to point the user to untracked cache from 'git status -uno' (new patch 24/24)

[PATCH] show-branch: fix indentation of usage string

2015-01-20 Thread Ralf Thielow
Noticed-by: Jean-Noël Avila jn.av...@free.fr Signed-off-by: Ralf Thielow ralf.thie...@gmail.com --- Jiang Xin worldhello@gmail.com wrote: 2015-01-18 23:53 GMT+08:00 Jean-Noël AVILA jn.av...@free.fr: Yes, it's wrong to using mixed tabs and spaces in the message. It comes from commit

Git messes up 'ø' character

2015-01-20 Thread Noralf Trønnes
I can't get my name: Noralf Trønnes, to come out correctly when I format and send a patch. The 'ø' becomes a question mark when received in my email client. This is the head of the patch file generated by git format-patch: From b2a4f6abdb097c4dc092b56995a2af8e42fbea79 Mon Sep 17 00:00:00 2001