Re: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Junio C Hamano
Felipe Contreras felipe.contre...@gmail.com writes: On Wed, Dec 12, 2012 at 5:58 PM, Junio C Hamano gits...@pobox.com wrote: [Stalled] * fc/remote-bzr (2012-11-28) 10 commits - (fixup) test-bzr.sh: fix multi-line string assignment - remote-bzr: detect local repositories - remote-bzr:

Tiffany uk shall be may well easiest companion

2012-12-13 Thread dawner117
strong tiffany uk http://www.tiffanyandcobracelets.co.uk/ /strong advances any richness and even tend to make people are similar to any little princess. This may be a quite amazing earring once which might be conveniently apply to. Subsequently any amazing and even trendy shower device a

Re: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Felipe Contreras
On Thu, Dec 13, 2012 at 2:11 AM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: New remote helper for bzr (v3). With minor fixes, this may be ready for 'next'. What minor fixes? Lookng at the above (fixup), $gmane/210744 comes to mind That

Re: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Max Horn
On 13.12.2012, at 11:08, Felipe Contreras wrote: On Thu, Dec 13, 2012 at 2:11 AM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: New remote helper for bzr (v3). With minor fixes, this may be ready for 'next'. What minor fixes? Lookng at

Re: [PATCH] git(1): remove a defunct link to list of authors

2012-12-13 Thread Jeff King
On Wed, Dec 12, 2012 at 10:06:24AM -0800, Junio C Hamano wrote: Jeff King p...@peff.net writes: I find the ohloh one a little more informative than the GitHub graph. I couldn't find any others (Google Code does not seem to have one, kernel.org and other gitweb sites do not, and I can't

Re: [PATCH 0/2] mailmap from blobs

2012-12-13 Thread Jeff King
On Wed, Dec 12, 2012 at 12:59:00PM -0500, Jeff King wrote: Have you considered defaulting to read from HEAD:.mailmap even when this new configuration is not there if core.bare is set? I would imagine that it would be the most convenient and match people's expectations. Yeah, I almost

Re: [PATCH 2/2] mailmap: support reading mailmap from blobs

2012-12-13 Thread Jeff King
On Wed, Dec 12, 2012 at 06:04:04AM -0500, Jeff King wrote: In a bare repository, there isn't a simple way to respect an in-tree mailmap without extracting it to a temporary file. This patch provides a config variable, similar to mailmap.file, which reads the mailmap from a blob in the

Re: FW: Git log --graph doesn't output color when redirected

2012-12-13 Thread Jeff King
On Wed, Dec 12, 2012 at 05:35:17PM +, Srb, Michal wrote: Unlike --pretty-format, --graph doesn’t output colors when the git log output is redirected. I do not think it has anything to do with --graph in particular, but rather that when colorization is set to the auto mode, it is enabled

[PATCH] Fix sizeof usage in get_permutations

2012-12-13 Thread Matthew Daley
Currently it gets the size of an otherwise unrelated, unused variable instead of the expected struct size. Signed-off-by: Matthew Daley mat...@gmail.com --- builtin/pack-redundant.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/pack-redundant.c

RE: FW: Git log --graph doesn't output color when redirected

2012-12-13 Thread Srb, Michal
From: Jeff King [p...@peff.net] Sent: Thursday, December 13, 2012 1:13 PM Is there a setting somewhere in config to change this? Yes. If you use --color on the command line, that means unconditionally use color. If you set color.ui (or any other color config option) to always, then you will

Re: [PATCH v2] submodule: add 'deinit' command

2012-12-13 Thread Marc Branchaud
On 12-12-12 05:25 PM, Jens Lehmann wrote: So unless people agree that deinit should also remove the work tree I'll prepare some patches teaching all git commands to consistently ignore deinitialized submodules. Opinions? I agree with Trevor's suggestion that deinit should restore the user to

Re: [PATCH] Fix sizeof usage in get_permutations

2012-12-13 Thread Joachim Schmitz
Matthew Daley wrote: Currently it gets the size of an otherwise unrelated, unused variable instead of the expected struct size. Signed-off-by: Matthew Daley mat...@gmail.com --- builtin/pack-redundant.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

RE: Build fixes for another obscure Unix

2012-12-13 Thread Pyeron, Jason J CTR (US)
-Original Message- From: David Michael Sent: Thursday, December 13, 2012 10:23 AM Hi, I've been experimenting with git running on z/OS USS. It is not yet stable, but I have had to make a few fixes and generalizations in the build system to get it to compile. Maybe it would

[PATCH v2] git.txt: add missing info about --git-dir command-line option

2012-12-13 Thread Manlio Perillo
Unlike other environment variables (e.g. GIT_WORK_TREE, GIT_NAMESPACE), the Documentation/git.txt file did not mention that the GIT_DIR environment variable can also be set using the --git-dir command line option. Signed-off-by: Manlio Perillo manlio.peri...@gmail.com --- Documentation/git.txt |

Re: [PATCH] Documentation/git: add missing info about --git-dir command-line option

2012-12-13 Thread Manlio Perillo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 12/12/2012 20:35, Junio C Hamano ha scritto: Manlio Perillo manlio.peri...@gmail.com writes: The Documentation/git.txt file, in the GIT_DIR environment variable section, did not mentioned that this value can also be set using the --git-dir

Re: [PATCH v2] index-format.txt: be more liberal on what can represent invalid cache tree

2012-12-13 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Nguyễn Thái Ngọc Duy pclo...@gmail.com writes: How would that work with existing versions? If you write -2 in cache-tree, the next time 1.8.0 updates cache tree it writes -1 back. That loses whatever information you attach to -2. A new cache-tree

Re: [PATCH 0/2] mailmap from blobs

2012-12-13 Thread Junio C Hamano
Jeff King p...@peff.net writes: Subject: [PATCH] mailmap: default mailmap.blob in bare repositories The motivation for mailmap.blob is to let users of bare repositories use the mailmap feature, as they would not have a checkout containing the .mailmap file. We can make it even easier for

Re: [PATCH v3 2/2] cache-tree: remove dead i-t-a code in verify_cache()

2012-12-13 Thread Junio C Hamano
Will replace the one in 'pu' with these two. Thanks. -- 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: unclear documentation of git fetch --tags option and tagopt config

2012-12-13 Thread Junio C Hamano
乙酸鋰 ch3co...@gmail.com writes: With git fetch --tags or remote.origin.tagopt = --tags git fetch only fetches tags, but not branches. Current documentation does not mention that no branches are fetched / pulled when --tags option or remote.origin.tagopt = --tags is specified. In the

Re: Build fixes for another obscure Unix

2012-12-13 Thread Junio C Hamano
David Michael fedora@gmail.com writes: I've been experimenting with git running on z/OS USS. It is not yet stable, but I have had to make a few fixes and generalizations in the build system to get it to compile. Would there be any interest in applying such individual compatibility

Re: [PATCH v2] git.txt: add missing info about --git-dir command-line option

2012-12-13 Thread Junio C Hamano
Thanks. -- 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: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Felipe Contreras
On Thu, Dec 13, 2012 at 6:04 AM, Max Horn post...@quendi.de wrote: On 13.12.2012, at 11:08, Felipe Contreras wrote: On Thu, Dec 13, 2012 at 2:11 AM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: New remote helper for bzr (v3). With minor fixes,

Re: [PATCH] Fix sizeof usage in get_permutations

2012-12-13 Thread Junio C Hamano
Thanks; it shows how rarely this obscure tool is used these days. -- 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: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Junio C Hamano
Felipe Contreras felipe.contre...@gmail.com writes: On Thu, Dec 13, 2012 at 2:11 AM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: New remote helper for bzr (v3). With minor fixes, this may be ready for 'next'. What minor fixes? Lookng at

Re: [PATCHv2] Add directory pattern matching to attributes

2012-12-13 Thread Junio C Hamano
Jean-Noël AVILA avila...@gmail.com writes: The manpage of gitattributes says: The rules how the pattern matches paths are the same as in .gitignore files and the gitignore pattern matching has a pattern ending with / for directory matching. This rule is specifically relevant for the

[PATCH] For git-subtree, when installing docs (make install-doc), create man1 folder first.

2012-12-13 Thread Jesper L. Nielsen
From: Jesper L. Nielsen lya...@gmail.com Hi.. I installed Git subtree and discovered that the if the man1dir doesn't exist the man-page for Git Subtree is just called man1. So, small patch to create the folder first in the Makefile. Hope everything is right with the patch and submitting of

Re: [PATCH v3 4/7] remote-bzr: update working tree

2012-12-13 Thread Felipe Contreras
On Wed, Nov 28, 2012 at 11:38 AM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- contrib/remote-helpers/git-remote-bzr | 2 ++ 1 file changed, 2 insertions(+) diff --git

Re: [PATCH] Fix sizeof usage in get_permutations

2012-12-13 Thread Felipe Contreras
On Thu, Dec 13, 2012 at 10:13 AM, Joachim Schmitz j...@schmitz-digital.de wrote: Matthew Daley wrote: Currently it gets the size of an otherwise unrelated, unused variable instead of the expected struct size. Signed-off-by: Matthew Daley mat...@gmail.com --- builtin/pack-redundant.c |6

Re: Build fixes for another obscure Unix

2012-12-13 Thread David Michael
Hi, On Thu, Dec 13, 2012 at 12:18 PM, Pyeron, Jason J CTR (US) jason.j.pyeron@mail.mil wrote: Would there be any interest in applying such individual compatibility fixes for this system, even if a full port doesn't reach completion? What are the down sides? Can your changes be shown to

Re: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Junio C Hamano
Felipe Contreras felipe.contre...@gmail.com writes: On Thu, Dec 13, 2012 at 1:31 PM, Junio C Hamano gits...@pobox.com wrote: ... One of the review points were about this piece in the test: +cmd=EOF +import bzrlib +bzrlib.initialize() +import bzrlib.plugin

Re: unclear documentation of git fetch --tags option and tagopt config

2012-12-13 Thread Philip Oakley
From: Junio C Hamano gits...@pobox.com Sent: Thursday, December 13, 2012 6:44 PM 乙酸鋰 ch3co...@gmail.com writes: With git fetch --tags or remote.origin.tagopt = --tags git fetch only fetches tags, but not branches. Current documentation does not mention that no branches are fetched / pulled

Re: [PATCH v3 4/7] remote-bzr: update working tree

2012-12-13 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Perhaps. It's not really clear if we should update the working tree at all. A 'git push' doesn't update the working directory on the remote, but a 'bzr push' does. I thought it was better to leave this distinction clear, in case this becomes an issue

Re: unclear documentation of git fetch --tags option and tagopt config

2012-12-13 Thread Junio C Hamano
Philip Oakley philipoak...@iee.org writes: What would be the best way of updating the documentation to clarify the point? Given ch3cooli's previous surprise. Oh, thanks for bringing it up. I was about to start another message that begins with Having said all that... ;-) I think the entire

Re: What's cooking in git.git (Dec 2012, #03; Wed, 12)

2012-12-13 Thread Felipe Contreras
On Thu, Dec 13, 2012 at 5:42 PM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: On Thu, Dec 13, 2012 at 1:31 PM, Junio C Hamano gits...@pobox.com wrote: ... One of the review points were about this piece in the test: +cmd=EOF +import

Re: [PATCH v3 4/7] remote-bzr: update working tree

2012-12-13 Thread Felipe Contreras
On Thu, Dec 13, 2012 at 5:58 PM, Junio C Hamano gits...@pobox.com wrote: Junio C Hamano gits...@pobox.com writes: Perhaps. It's not really clear if we should update the working tree at all. A 'git push' doesn't update the working directory on the remote, but a 'bzr push' does. I thought it

[PATCH] Documentation/git-clean: Document --force --force

2012-12-13 Thread Soren Brinkmann
This patch documents the behavior of 'git clean' when encountering nested git repositories. Such repositories are only deleted if '-f' is passed twice to 'git clean'. Signed-off-by: Soren Brinkmann soren.brinkm...@xilinx.com --- Documentation/git-clean.txt | 5 + 1 file changed, 5

thomas sabo uk performs a key function in

2012-12-13 Thread dekelo37
The silver jewellery offers a variety of bracelets, necklaces, earrings, rings, cufflinks, and many other pieces of jewelry which meet up the biggest need in terms of quality and aesthetics. The company brings a unisex line which helps in removing the customary differentiation between jewelry for

Re: Build fixes for another obscure Unix

2012-12-13 Thread Joachim Schmitz
David Michael wrote: Hi, On Thu, Dec 13, 2012 at 12:18 PM, Pyeron, Jason J CTR (US) jason.j.pyeron@mail.mil wrote: Would there be any interest in applying such individual compatibility fixes for this system, even if a full port doesn't reach completion? What are the down sides? Can your