Re: .gitignore sub-dir exclusions not overriding '*'

2014-11-19 Thread Duy Nguyen
On Wed, Nov 19, 2014 at 10:40 AM, Phil Pennock phil-gi...@phil.spodhuis.org wrote: Expected to work as .gitignore in top-level of repo: * !**/*.asc !.gitignore gitignore man page has this It is not possible to re-include a file if a parent directory of that file is excluded. In

[PATCH] dir.c: allow re-include after a dir is excluded in some cases

2014-11-19 Thread Nguyễn Thái Ngọc Duy
If we exclude a directory and have no knowledge in advance if there will be any negative rules on that directory, then it makes no sense to enter the directory and search for those negative rules. That defeats the purpose of excluding in the first place. However there are cases where we know in

[RFD/PATCH] add: ignore only ignored files

2014-11-19 Thread Michael J Gruber
git add foo bar adds neither foo nor bar when bar is ignored, but dies to let the user recheck their command invocation. This becomes less helpful when git add foo.* is subject to shell expansion and some of the expanded files are ignored. git add --ignore-errors is supposed to ignore errors when

[PATCH] Improve the filemode trustability check

2014-11-19 Thread Torsten Bögershausen
Some file systems do not support the executable bit: a) The user executable bit is always 0, e.g. VFAT mounted with -onoexec b) The user executable bit is always 1, e.g. cifs mounted with -ofile_mode=0755 c) There are system where user executable bit is 1 even if it should be 0 like b), but the

Re: [RFC] On watchman support

2014-11-19 Thread Paolo Ciarrocchi
On Tue, Nov 18, 2014 at 1:25 AM, David Turner dtur...@twopensource.com wrote: My patches are not the world's most beautiful, but they do work. Out of curiosity: do you run the patches at twitter? Thanks. -- Paolo -- Paolo -- To unsubscribe from this list: send the line unsubscribe git in

[RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Peter Wu
git remote set-url knew about the '--push' option to update just the pushurl, but it does not have a similar option for update fetch URL and leave whatever was in place for the push URL. This patch adds support for a '--fetch' option which implements that use case in a backwards compatible way:

Re: [RFC] On watchman support

2014-11-19 Thread David Turner
On Wed, 2014-11-19 at 16:26 +0100, Paolo Ciarrocchi wrote: On Tue, Nov 18, 2014 at 1:25 AM, David Turner dtur...@twopensource.com wrote: My patches are not the world's most beautiful, but they do work. Out of curiosity: do you run the patches at twitter? An increasing number of us do,

Re: [PATCH] git-new-workdir: Don't fail if the target directory is empty

2014-11-19 Thread Junio C Hamano
Paul Smith p...@mad-scientist.net writes: Allow new workdirs to be created in an empty directory (similar to git clone). Provide more error checking and clean up on failure. Signed-off-by: Paul Smith p...@mad-scientist.net --- Getting rid of ls/wc was not as simple as I'd hoped, due to

Re: [PATCH] refs.c: use a stringlist for repack_without_refs

2014-11-19 Thread Junio C Hamano
Stefan Beller sbel...@google.com writes: This patch doesn't intend any functional changes. It is just a refactoring, which replaces a char** array by a stringlist in the function repack_without_refs. This is easier to read and maintain as it delivers the same functionality with less lines of

Re: [PATCH 1/4] error: save and restore errno

2014-11-19 Thread Junio C Hamano
Jeff King p...@peff.net writes: On Tue, Nov 18, 2014 at 05:43:44PM -0800, Jonathan Nieder wrote: Jeff King wrote: It's common to use error() to return from a function, like: if (open(...) 0) return error(open failed); Unfortunately this may clobber the errno from

Re: [PATCH 1/4] error: save and restore errno

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 10:14:17AM -0800, Junio C Hamano wrote: What the above doesn't explain is why the caller cares about errno. Are they going to print another message with strerror(errno)? Or are they going to consider some errors non-errors (like ENOENT when trying to unlink a

Re: git-fetch: default globally to --no-tags

2014-11-19 Thread Jeff King
On Tue, Nov 18, 2014 at 07:05:23PM -0800, Brian Norris wrote: When I fetch from a remote repository, the only ways to prevent fetching tags are: 1) git fetch --no-tags name 2) git config remote.name.tagopt --no-tags; git fetch name Yes, there is no way to globally specify --no-tags.

Re: git-fetch: default globally to --no-tags

2014-11-19 Thread Junio C Hamano
Brian Norris computersforpe...@gmail.com writes: --- TL;DR --- You usually have TL;DR at the beginning to help people save time; having it at the end forces the whole thing to be read and would not help anybody. ;-) My email boils down to two questions: (A) Has there been progress on

Re: [PATCH] dir.c: allow re-include after a dir is excluded in some cases

2014-11-19 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com writes: diff --git a/Documentation/gitignore.txt b/Documentation/gitignore.txt index 09e82c3..0340c44 100644 --- a/Documentation/gitignore.txt +++ b/Documentation/gitignore.txt @@ -82,10 +82,9 @@ PATTERN FORMAT - An optional prefix `!` which

[PATCH] refs.c: use a stringlist for repack_without_refs

2014-11-19 Thread Stefan Beller
From: Ronnie Sahlberg sahlb...@google.com This patch doesn't intend any functional changes. It is just a refactoring, which replaces a char** array by a stringlist in the function repack_without_refs. This is easier to read and maintain as it delivers the same functionality with less lines of

Re: [RFD/PATCH] add: ignore only ignored files

2014-11-19 Thread Junio C Hamano
Michael J Gruber g...@drmicha.warpmail.net writes: ... and most would expect git add --ignore-errors to ignore the file is ignored error as well and continue adding the remaining files. Yeah, I think that makes sense (but please don't take it as the final decision yet---I'd like to hear from

Re: git-fetch: default globally to --no-tags

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 10:45:48AM -0800, Junio C Hamano wrote: My email boils down to two questions: (A) Has there been progress on implementing a proposal like in [2]? I do not think so, and also I do not agree that mirror everybody else's ref hierarchy into separate namespaces is

Re: [PATCH] Improve the filemode trustability check

2014-11-19 Thread Junio C Hamano
Torsten Bögershausen tbo...@web.de writes: Some file systems do not support the executable bit: a) The user executable bit is always 0, e.g. VFAT mounted with -onoexec b) The user executable bit is always 1, e.g. cifs mounted with -ofile_mode=0755 c) There are system where user executable

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 04:18:02PM +0100, Peter Wu wrote: git remote set-url knew about the '--push' option to update just the pushurl, but it does not have a similar option for update fetch URL and leave whatever was in place for the push URL. Isn't that what: git remote set-url foo

Re: [RFD/PATCH] add: ignore only ignored files

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 03:52:33PM +0100, Michael J Gruber wrote: git add foo bar adds neither foo nor bar when bar is ignored, but dies to let the user recheck their command invocation. This becomes less helpful when git add foo.* is subject to shell expansion and some of the expanded files

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Peter Wu
On Wednesday 19 November 2014 14:08:00 Jeff King wrote: On Wed, Nov 19, 2014 at 04:18:02PM +0100, Peter Wu wrote: git remote set-url knew about the '--push' option to update just the pushurl, but it does not have a similar option for update fetch URL and leave whatever was in place for

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 08:42:19PM +0100, Peter Wu wrote: git remote set-url --push gh $(git config remote.gh.url) git remote set-url gh new-fetch-url Indeed, and not having a push URL is not uncommon (that is, always the case when a new remote is added or just cloned). Compare the

Re: git-fetch: default globally to --no-tags

2014-11-19 Thread Junio C Hamano
Jeff King p...@peff.net writes: On Wed, Nov 19, 2014 at 10:45:48AM -0800, Junio C Hamano wrote: ... tags are meant to be used for globally shared anchoring points and the whole machinery (e.g. fetch that auto-follows tags, clone that gives refs/tags*:refs/tags/* refspec) is geared towards

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Junio C Hamano
Jeff King p...@peff.net writes: I dunno. I guess that is more convenient, but it seems like a lot of code for a very marginal use case. But more importantly, I'm a little worried that the presence of --fetch creates confusion about what set-url without a --fetch or --push does. That is, it

Re: git-fetch: default globally to --no-tags

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 12:22:36PM -0800, Junio C Hamano wrote: With a separate local-tags hierarchy, the look-up part still has to be enhanced. After doing git tag v2.0 and git tag -l snapshot00, you would want to be able to say git log snapshot00..v2.0 and have these found. If you don't

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Peter Wu
On Wednesday 19 November 2014 15:17:21 Jeff King wrote: On Wed, Nov 19, 2014 at 08:42:19PM +0100, Peter Wu wrote: git remote set-url --fetch new-fetch-url This is less verbose and is much more intuitive. I agree your suggestion is a nicer way to do this. I'm just not sure that this

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Peter Wu
On Wednesday 19 November 2014 12:29:47 Junio C Hamano wrote: Jeff King p...@peff.net writes: I dunno. I guess that is more convenient, but it seems like a lot of code for a very marginal use case. But more importantly, I'm a little worried that the presence of --fetch creates confusion

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Junio C Hamano
Jeff King p...@peff.net writes: But here you do not have a pushurl defined in the first place. So I guess this is really just a shortcut for swapping the two, like: git remote set-url --push gh $(git config remote.gh.url) git remote set-url gh new-fetch-url It seems that this swapping

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Junio C Hamano
Peter Wu pe...@lekensteyn.nl writes: On Wednesday 19 November 2014 12:29:47 Junio C Hamano wrote: ... Yes, the semantics the updated code gives feel very strange. I wouldn't be able to write a three-line summary in the release notes to advertise what good this new feature brings to users

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Jeff King p...@peff.net writes: But here you do not have a pushurl defined in the first place. So I guess this is really just a shortcut for swapping the two, like: git remote set-url --push gh $(git config remote.gh.url) git remote set-url gh

Re: [RFC] [PATCH] remote: add new --fetch option for set-url

2014-11-19 Thread Peter Wu
On Wednesday 19 November 2014 13:18:56 Junio C Hamano wrote: Junio C Hamano gits...@pobox.com writes: Jeff King p...@peff.net writes: If you are fetching from somebody else and then pushing into your own publishing repository (i.e. fork of that upstream), why isn't the sequence of event

One more 2.2-rc -- delaying the final

2014-11-19 Thread Junio C Hamano
As we have oops, what was already added to 'master' is not quite right fixes for a few topics, I'd feel uneasy to release 2.2 final without a -rc3. I was hoping that we can tag the final end of this week, but let's make a -rc3 tomorrow or Friday and then do the final one mid next week just before

Re: Subject: [PATCH/RFC] Documentation/git-stripspace: Update synopsis

2014-11-19 Thread Junio C Hamano
Slavomir Vlcek s...@inventati.org writes: I solved this by adding an extra (second) synopsis line so it looks just like the 'usage_msg' in 'builtin/stripspace.c'. But perhaps it would be wiser to have something like git stripspace [[-s | --strip-comments] | [-c | --comment-lines]] input

[PATCH 0/2] Breaking the ref-transactions-reflog series in smaller parts

2014-11-19 Thread Stefan Beller
Hi, so I think the patch series ref-transactions-reflog[1] sent previously to the list is still too large for easy review and I want to break it up more. So in this series we'll digest only 2 small patches, which do not seem to be controversial (yet;) and seem to be useful no matter how the

[PATCH 1/2] refs.c: make ref_transaction_create a wrapper for ref_transaction_update

2014-11-19 Thread Stefan Beller
From: Ronnie Sahlberg sahlb...@google.com The ref_transaction_update function can already be used to create refs by passing null_sha1 as the old_sha1 parameter. Simplify by replacing transaction_create with a thin wrapper. Signed-off-by: Ronnie Sahlberg sahlb...@google.com Signed-off-by:

[PATCH 2/2] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update

2014-11-19 Thread Stefan Beller
From: Ronnie Sahlberg sahlb...@google.com Signed-off-by: Ronnie Sahlberg sahlb...@google.com Signed-off-by: Jonathan Nieder jrnie...@gmail.com Signed-off-by: Stefan Beller sbel...@google.com --- The same as sent 2 days before as part of the ref-transactions-reflog series

Re: [PATCH 3/4] lock_ref_sha1_basic: simplify error code path

2014-11-19 Thread Junio C Hamano
Jonathan Nieder jrnie...@gmail.com writes: Jeff King wrote: Hmph. Should we just abandon my series in favor of taking Ronnie's original patch, then? We can apply the save/restore errno in error() patch independently if we like. I liked patches 1 and 2 and the explanation from patch 4.

Re: [RFD/PATCH] add: ignore only ignored files

2014-11-19 Thread Junio C Hamano
Jeff King p...@peff.net writes: Typically I keep a very neat .gitignore file and just use git add ., which _does_ ignore those files. The real problem here is that git cannot tell the difference between the user explicitly asked for foo.aux, so we should complain and oops, foo.aux got caught

[PATCH] wincred: fix get credential if username has @

2014-11-19 Thread Aleksey Vasenev
Signed-off-by: Aleksey Vasenev margtu-f...@ya.ru --- .../credential/wincred/git-credential-wincred.c| 25 +++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/contrib/credential/wincred/git-credential-wincred.c

[PATCH] refs.c: use a stringlist for repack_without_refs

2014-11-19 Thread Stefan Beller
From: Ronnie Sahlberg sahlb...@google.com This patch doesn't intend any functional changes. It is just a refactoring, which replaces a char** array by a stringlist in the function repack_without_refs. This is easier to read and maintain as it delivers the same functionality with less lines of

[PATCH v4] refs.c: use a stringlist for repack_without_refs

2014-11-19 Thread Stefan Beller
From: Ronnie Sahlberg sahlb...@google.com This patch doesn't intend any functional changes. It is just a refactoring, which replaces a char** array by a stringlist in the function repack_without_refs. This is easier to read and maintain as it delivers the same functionality with less lines of

Re: [PATCH 3/4] lock_ref_sha1_basic: simplify error code path

2014-11-19 Thread Jeff King
On Tue, Nov 18, 2014 at 06:07:13PM -0800, Jonathan Nieder wrote: Jeff King wrote: Hmph. Should we just abandon my series in favor of taking Ronnie's original patch, then? We can apply the save/restore errno in error() patch independently if we like. I liked patches 1 and 2 and the

Re: [PATCH 3/4] lock_ref_sha1_basic: simplify error code path

2014-11-19 Thread Junio C Hamano
Jeff King p...@peff.net writes: So we still have to keep the last_errno handling in error_return. Meaning that we need to drop patch 2 (even though the other cases don't need errno saved/restore, since the goto does it unconditionally, we still need to set last_errno). And therefore patch 1

Re: [PATCH 3/4] lock_ref_sha1_basic: simplify error code path

2014-11-19 Thread Jeff King
On Wed, Nov 19, 2014 at 02:34:12PM -0800, Junio C Hamano wrote: Subject: lock_ref_sha1_basic: do not die on locking errors Will queue; thanks. I just noticed that when I pasted it into the mail, I dropped the From: Ronnie Sahlberg sahlb...@google.com header. Can you please make sure to

Re: [PATCH] wincred: fix get credential if username has @

2014-11-19 Thread Junio C Hamano
Aleksey Vasenev margtu-f...@ya.ru writes: To: git@vger.kernel.org Cc: Junio C Hamano gits...@pobox.com, Aleksey Vasenev margtu-f...@ya.ru Sorry, but I am hardly qualified to review this one, especially without any log message that explains what breaks and how it breaks with the current code,

Re: [PATCH v3 00/14] ref-transactions-reflog

2014-11-19 Thread Stefan Beller
Sorry for the long delay. Thanks for the explanation and discussion. So do I understand it right, that you are not opposing the introduction of everything should go through transactions but rather the detail and abstraction level of the API? So starting from Michaels proposal in the first

Re: .gitignore sub-dir exclusions not overriding '*'

2014-11-19 Thread Phil Pennock
On 2014-11-19 at 16:48 +0700, Duy Nguyen wrote: On Wed, Nov 19, 2014 at 10:40 AM, Phil Pennock phil-gi...@phil.spodhuis.org wrote: Expected to work as .gitignore in top-level of repo: * !**/*.asc !.gitignore gitignore man page has this It is not possible to re-include

Re: [PATCH] dir.c: allow re-include after a dir is excluded in some cases

2014-11-19 Thread Duy Nguyen
On Thu, Nov 20, 2014 at 1:48 AM, Junio C Hamano gits...@pobox.com wrote: Nguyễn Thái Ngọc Duy pclo...@gmail.com writes: diff --git a/Documentation/gitignore.txt b/Documentation/gitignore.txt index 09e82c3..0340c44 100644 --- a/Documentation/gitignore.txt +++ b/Documentation/gitignore.txt

[PATCH] refs.c: add a function to append a reflog entry to a fd

2014-11-19 Thread Stefan Beller
From: Ronnie Sahlberg sahlb...@google.com Break out the code to create the string and writing it to the file descriptor from log_ref_write and add it into a dedicated function log_ref_write_fd. For now this is only used from log_ref_write, but later on we will call this function from reflog

Re: [PATCH 3/4] lock_ref_sha1_basic: simplify error code path

2014-11-19 Thread Jonathan Nieder
Jeff King wrote: Signed-off-by: Ronnie Sahlberg sahlb...@google.com Signed-off-by: Jeff King p...@peff.net --- refs.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) Reviewed-by: Jonathan Nieder jrnie...@gmail.com (modulo the author attribution nit you noticed) -- To

Re: [PATCH 1/2] refs.c: make ref_transaction_create a wrapper for ref_transaction_update

2014-11-19 Thread Jonathan Nieder
Stefan Beller wrote: From: Ronnie Sahlberg sahlb...@google.com The ref_transaction_update function can already be used to create refs by passing null_sha1 as the old_sha1 parameter. Simplify by replacing transaction_create with a thin wrapper. Signed-off-by: Ronnie Sahlberg

Re: [PATCH 2/2] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update

2014-11-19 Thread Jonathan Nieder
Stefan Beller wrote: refs.c | 22 ++ refs.h | 2 +- 2 files changed, 3 insertions(+), 21 deletions(-) Likewise: Reviewed-by: Jonathan Nieder jrnie...@gmail.com but this shouldn't have had my sign-off. -- To unsubscribe from this list: send the line unsubscribe git in

Re: [PATCH 1/2] refs.c: make ref_transaction_create a wrapper for ref_transaction_update

2014-11-19 Thread Stefan Beller
I am sorry for not having asked before. As I picked up the patches, you had sign offs pretty much at any patch. I'll remove them from future patches when sending to the list. On Wed, Nov 19, 2014 at 5:10 PM, Jonathan Nieder jrnie...@gmail.com wrote: Stefan Beller wrote: From: Ronnie Sahlberg

Re: [PATCH] refs.c: add a function to append a reflog entry to a fd

2014-11-19 Thread Junio C Hamano
Stefan Beller sbel...@google.com writes: Compared to the last send of this patch[1], there was one change in the print function. Replaced sprintf by snprintf for security reasons. Careful. I despise people who blindly think strlcpy() and snprintf() are good solutions for for security. They

Re: .gitignore sub-dir exclusions not overriding '*'

2014-11-19 Thread Duy Nguyen
On Thu, Nov 20, 2014 at 6:41 AM, Phil Pennock phil-gi...@phil.spodhuis.org wrote: On 2014-11-19 at 16:48 +0700, Duy Nguyen wrote: On Wed, Nov 19, 2014 at 10:40 AM, Phil Pennock phil-gi...@phil.spodhuis.org wrote: Expected to work as .gitignore in top-level of repo: * !**/*.asc

Re: [PATCH] refs.c: add a function to append a reflog entry to a fd

2014-11-19 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Stefan Beller sbel...@google.com writes: Compared to the last send of this patch[1], there was one change in the print function. Replaced sprintf by snprintf for security reasons. Careful. I despise people who blindly think strlcpy() and

Re: [PATCH 1/2] refs.c: make ref_transaction_create a wrapper for ref_transaction_update

2014-11-19 Thread Jonathan Nieder
(administrivia: please don't top-post) Stefan Beller wrote: On Wed, Nov 19, 2014 at 5:10 PM, Jonathan Nieder jrnie...@gmail.com wrote: I feel a bit ashamed to have my sign-off peppering all these patches that I didn't have anything to do with except preparing to send them to the list once or

Re: [PATCH] refs.c: add a function to append a reflog entry to a fd

2014-11-19 Thread Jonathan Nieder
Stefan Beller wrote: Compared to the last send of this patch[1], there was one change in the print function. Replaced sprintf by snprintf for security reasons. I prefer the version that didn't change the code while we are extracting it into a new function. A separate patch on top can switch

[PATCH] refs.c: add a function to append a reflog entry to a fd

2014-11-19 Thread Stefan Beller
Break out the code to create the string and writing it to the file descriptor from log_ref_write and add it into a dedicated function log_ref_write_fd. For now this is only used from log_ref_write, but later on we will call this function from reflog transactions too, which means that we will end

Re: [PATCH v4] refs.c: use a stringlist for repack_without_refs

2014-11-19 Thread Jonathan Nieder
Stefan Beller wrote: From: Ronnie Sahlberg sahlb...@google.com This patch doesn't intend any functional changes. It is just a refactoring, which replaces a char** array by a stringlist in the function repack_without_refs. This is easier to read and maintain as it delivers the same

Re: [PATCH] refs.c: add a function to append a reflog entry to a fd

2014-11-19 Thread Jonathan Nieder
Stefan Beller wrote: [Subject: [PATCH] refs.c: add a function to append a reflog entry to a fd] Does this supersede the other patch with the same subject? Please keep adding vnum in the subject --- when it's there, it makes reading much easier. Missing 'From:' line naming the original patch

Re: [PATCH v3 00/14] ref-transactions-reflog

2014-11-19 Thread Jonathan Nieder
Hi, Stefan Beller wrote: Sorry for the long delay. Thanks for the explanation and discussion. So do I understand it right, that you are not opposing the introduction of everything should go through transactions but rather the detail and abstraction level of the API? For what it's worth, I

[L10N] please review a batch l10n update for Git 2.2.0 final

2014-11-19 Thread Jiang Xin
Hi, Only two days left for Git 2.2.0 final according to Git calendar (http://tinyurl.com/gitCal), but there is a new update for our L10N team to respond. The change is so small, I can handle it. git-diff shows: -msgid empty trailer token in trailer '%s' +msgid empty trailer token in

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

2014-11-19 Thread Ralf Thielow
Signed-off-by: Ralf Thielow ralf.thie...@gmail.com --- I already sent a pull request with this change due to lack of time because the messages were fairly easy to translate. If there's something wrong with these translations, we need to fix it in a separate patch. po/de.po | 4 +--- 1 file

Re: [L10N] please review a batch l10n update for Git 2.2.0 final

2014-11-19 Thread Ralf Thielow
NOTE for Ralf: After I updated de.po, there are 3 fuzzies instead of one. I can only fix one of them. I just send a pull-request to you. It seems I have forgotten one git.pot update. Sorry -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: [L10N] please review a batch l10n update for Git 2.2.0 final

2014-11-19 Thread Peter Krefting
Jiang Xin: Because I update the .po files with msgmerge, this update also brings some format changes, so not panic. :) What I changed are: Swedish (sv) looks fine, thanks! -- \\// Peter - http://www.softwolves.pp.se/ -- To unsubscribe from this list: send the line unsubscribe git in the