[PATCH] l10n: de.po: translate 3 messages

2015-01-18 Thread Ralf Thielow
Signed-off-by: Ralf Thielow --- po/de.po | 15 ++- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/po/de.po b/po/de.po index 38183fb..0b93b0f 100644 --- a/po/de.po +++ b/po/de.po @@ -6595,14 +6595,12 @@ msgid "trailer(s) to add" msgstr "Anhang/Anhänge hinzufügen" #:

Re: [PATCH] test: add git apply whitespace expansion tests

2015-01-18 Thread Kyle J. McKay
On Jan 18, 2015, at 14:11, Junio C Hamano wrote: On Sun, Jan 18, 2015 at 2:49 AM, Kyle J. McKay wrote: * Here's some tests. With "apply: make update_pre_post_images() sanity check the given postlen" but not "apply: count the size of postimage correctly" test 1/4 and 4/4 trigger the 'die(

[PATCH (resend)] show-branch --upstream: add upstream branches to the list of branches to display

2015-01-18 Thread Mike Hommey
`git show-branch` is a useful tool to display topics, but when you have several local topic branches based on different upstream branches, it can get cumbersome to use the right upstream branch with the right set of topic branches. The --upstream flag automatically adds the upstream branch for eve

[PATCH] transport-helper: do not request symbolic refs to remote helpers

2015-01-18 Thread Mike Hommey
A typical remote helper will return a `list` of refs containing a symbolic ref HEAD, pointing to, e.g. refs/heads/master. In the case of a clone, all the refs are being requested through `fetch` or `import`, including the symbolic ref. While this works properly, in some cases of a fetch, like `git

Pretty format specifier for commit count?

2015-01-18 Thread Josh Triplett
I'd like to use git-log to generate a Debian changelog file (with one entry per commit), which has entries like this: package-name (version-number) unstable; urgency=low * ... -- Example Person RFC822-date Since I'm intentionally generating one entry per commit, I can generate *almost* all

[ANNOUNCE] git-deps: commit dependency analysis / visualization

2015-01-18 Thread Adam Spiers
On Sun, Jan 04, 2015 at 01:08:03AM +, Adam Spiers wrote: > Hi all, > > Thanks to my employer's generous "Hack Week" policy[0], I have the > luxury of being able to spend most of next week hacking on a git > commit dependency inference tool which I built 14 months ago but never > got round to p

Re: [PATCH] test: add git apply whitespace expansion tests

2015-01-18 Thread Junio C Hamano
On Sun, Jan 18, 2015 at 2:49 AM, Kyle J. McKay wrote: > * Here's some tests. With "apply: make update_pre_post_images() sanity > check the given postlen" but not "apply: count the size of postimage > correctly" test 1/4 and 4/4 trigger the 'die("BUG: postlen...' but > test 2/4 and 3/4 do no

Re: .gitattributes on branch behaves unexpected. Should it be more stateless?

2015-01-18 Thread Max W
Hi philip, thanks for your reply. > You don't say which parts you believe should be identical, nor why. I expected my representation to be identical, nevertheless what path I have taken to come there. e.g. git clone -b git clone; git checkout should result in a binary-indentical representation

Re: [L10N] Startup of Git 2.3.0 l10n round 2

2015-01-18 Thread Jiang Xin
2015-01-18 23:53 GMT+08:00 Jean-Noël AVILA : > Hi, > > One of the new strings mixes tabs and spaces at begining of lines. Is it > really to be applied? > > Jean-Noël Yes, it's wrong to using mixed tabs and spaces in the message. It comes from commit v2.0.5-5-g9990273, and it should be fixed.

Re: [PATCH v7 1/1] http: Add Accept-Language header if possible

2015-01-18 Thread Torsten Bögershausen
On 18.01.15 13:26, Yi EungJun wrote: > From: Yi EungJun > diff --git a/http.c b/http.c > index 040f362..349b033 100644 > --- a/http.c > +++ b/http.c > @@ -68,6 +68,8 @@ static struct curl_slist *no_pragma_header; > > static struct active_request_slot *active_queue_head; > > +static char *cac

[L10N] Startup of Git 2.3.0 l10n round 2

2015-01-18 Thread Jiang Xin
Hi, Five l10n teams (Vietnamese, French, Swedish, Simplified Chinese and German) have already accomplished the 1st round l10n for Git 2.3.0. Now let's start l10n round 2 for the upcoming Git 2.3.0, because there are 3 new i18n updates found in Git master. The new "git.pot" is generated in commit

Re: [PATCH] git-p4: support exclude in 'git p4 sync'

2015-01-18 Thread Pete Wyckoff
l...@diamand.org wrote on Sat, 17 Jan 2015 20:56 +: > The git-p4 'clone' subcommand has long had the option to specify > parts of the repo to be excluded, on the command line. But this has > not been present in 'sync', which makes it less than useful: as > soon as you do a sync, the excluded pa

[PATCH v7 1/1] http: Add Accept-Language header if possible

2015-01-18 Thread Yi EungJun
From: Yi EungJun Add an Accept-Language header which indicates the user's preferred languages defined by $LANGUAGE, $LC_ALL, $LC_MESSAGES and $LANG. Examples: LANGUAGE= -> "" LANGUAGE=ko:en -> "Accept-Language: ko, en;q=0.9, *;q=0.1" LANGUAGE=ko LANG=en_US.UTF-8 -> "Accept-Language: ko, *;

[PATCH v7 0/1] http: Add Accept-Language header if possible

2015-01-18 Thread Yi EungJun
From: Yi EungJun Changes since v6 >From Junio C Hamano's review: * Fix check_language() in t5550-http-fetch-dumb.sh as his suggestion. >From Eric Sunshine's review: * Rewrite the parser without state. Yi EungJun (1): http: Add Accept-Language header if possible http.c

Re: [RFC] Introducing different handling for small/large transactions

2015-01-18 Thread Michael Haggerty
On 01/15/2015 11:36 PM, Stefan Beller wrote: > For everyday use we want git to be fast. Creating one commit should not > touch the packed refs file. If we do other stuff involving more than > one ref, we may accept touching the packed refs file and have a process > which takes slightly longer but c

Re: [PATCH] .clang-format: introduce the use of clang-format

2015-01-18 Thread René Scharfe
Am 17.01.2015 um 22:30 schrieb Ramkumar Ramachandra: Instead of manually eyeballing style in reviews, just ask all contributors to run their patches through [git-]clang-format. Signed-off-by: Ramkumar Ramachandra --- The idea is to introduce the community to this new toy I found called clan

[PATCH] test: add git apply whitespace expansion tests

2015-01-18 Thread Kyle J. McKay
When git apply fixes whitespace, the result can end up being longer than the initial text if whitespace ends up being expanded (such as with the tab-in-indent option). Since 250b3c6c (apply --whitespace=fix: avoid running over the postimage buffer, 2013-03-22) an attempt has been made to compute t

See my offer

2015-01-18 Thread Jose
Please read my email for a transfer offer of 6.5 Million Euro -- 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