On 20.10.13 08:05, Ondřej Bílka wrote:
> On Sun, Oct 20, 2013 at 07:47:06AM +0200, Torsten Bögershausen wrote:
>> (may be s/path is too big/path is too long/ ?)
>>
>> On 19.10.13 12:52, Antoine Pelisse wrote:
>>> Currently, most buffers created with PATH_MAX length, are not checked
>>> when being w
On Sun, Oct 20, 2013 at 07:47:06AM +0200, Torsten Bögershausen wrote:
> (may be s/path is too big/path is too long/ ?)
>
> On 19.10.13 12:52, Antoine Pelisse wrote:
> > Currently, most buffers created with PATH_MAX length, are not checked
> > when being written, and can overflow if PATH_MAX is not
(may be s/path is too big/path is too long/ ?)
On 19.10.13 12:52, Antoine Pelisse wrote:
> Currently, most buffers created with PATH_MAX length, are not checked
> when being written, and can overflow if PATH_MAX is not big enough to
> hold the path.
>
> Fix that by using strlcpy() where strcpy()
On Sat, Oct 19, 2013 at 9:41 PM, Nicolas Pitre wrote:
> On Sat, 19 Oct 2013, Duy Nguyen wrote:
> The SHA1 used in the name of the pack file is actually the SHA1 checksum
> of the SHA1 table.
>
> The path and ident tables are already protected by the CRC32 in the zlib
> deflated stream.
>
> Normal
Hello Thomas
> Can you briefly describe what you changed in v7 and v8, both compared to
> earlier versions and between v7 and v8?
On v7, 's basename part is tried to kept. On v7, whole part is tried
to kept.
For example, in case below:
parent_path{sourceDirectory =>
DestinationDirectory}path
Hi,
so I was a GSoC:er, I got some (most) of my code merged but didn't fully
met my (personal) goals for the project. However I do passed in the eyes
of Google.
GSoC is _hard_. You end up feeling completely stupid over and over
again. Git has hard standards. Beeing just a single programmer and/or
Now that ad0e623 (test-lib: support running tests under valgrind in
parallel, 2013-06-23) has been reverted, this support code has no
users any more. Revert it, too.
This reverts commit e939e15d241e942662b9f88f6127ab470ab0a0b9.
---
t/test-lib.sh | 27 ---
1 file changed,
This reverts commit ad0e6233320b004f0d686f6887c803e508607bd2.
--valgrind-parallel was broken from the start: during review I made
the whole valgrind setup code conditional on not being a
--valgrind-parallel worker child. But even the children crucially
need $GIT_VALGRIND to be set; it should ther
These patches remove the --valgrind-parallel=N option that was broken
from the outset (shame on me). Peff's judgement at the time that its
usefulness would approximately be "meh" turns out to be correct.
What's not in the commit message, but drives part of my reasoning in
doing a revert instead o
>
> (This could go to msysgit mailing list, so I add a CC)
> (and I think, it is a known issue)
>
> As a work around, could you try this:
>> Downgrading to msysgit 1.8.3 fixes my problem.
> and tell us if this helps you?
Yes, 1.8.3 seems to work (did initial commit successfully).
ain
--
To unsubs
Karsten Blees writes:
> When cache_entry structs are removed from index_state.cache, they are not
> properly freed. Freeing those entries wasn't possible before because we
> couldn't remove them from index_state.name_hash.
>
> Now that we _do_ remove the entries from name_hash, we can also free t
On Sat, Oct 19, 2013 at 7:41 AM, Nicolas Pitre wrote:
> On Sat, 19 Oct 2013, Duy Nguyen wrote:
>
>> On Wed, Oct 16, 2013 at 3:34 PM, Jeff King wrote:
>> > I was recently presented with a repository with a corrupted packfile,
>> > and was asked if the data was recoverable. This post-mortem describ
On 2013-10-19 10.49, Ain Valtin wrote:
> Hi
>
> I want to use git in a VirtualBox guest so that the repository is on
> the host drive. So in the VB settings for the guest I set up a shared
> folder "gitRepos" to /home/ain with full access rights. Then in the
> guest OS (Windows XP) I map this shar
On Tue, 2013-10-08 at 15:22 -0700, Jonathan Nieder wrote:
> Duy Nguyen wrote:
>
> > Or maybe it's not that late. How about you go with your patch and add
> > thin-pack capability to receive-pack too?
> >
> > When new "git push" is used against old server, thin pack is disabled.
> > But that's not
On Sat, 19 Oct 2013, Duy Nguyen wrote:
> On Wed, Oct 16, 2013 at 3:34 PM, Jeff King wrote:
> > I was recently presented with a repository with a corrupted packfile,
> > and was asked if the data was recoverable. This post-mortem describes
> > the steps I took to investigate and fix the problem. I
From: "Karsten Blees"
Am 15.10.2013 00:29, schrieb Felipe Contreras:
tl;dr: everyone except Junio C Hamano and Drew Northup agrees; we
should move
away from the name "the index".
It has been discussed many times in the past that 'index' is not an
appropriate description for what the high-level
Thomas Rast wrote:
> * Diminishing returns: Git is too mature, with little low-hanging
> fruit left, making such projects harder
Too mature? Aren't there other projects that are "too mature" as well? In
particular I'm thinking about the Linux kernel.
I think it's not about maturity, but how the
On Sat, Oct 19, 2013 at 02:45:46PM +0300, Ain Valtin wrote:
> On Sat, Oct 19, 2013 at 2:11 PM, Fredrik Gustafsson wrote:
> >
> > Git has a bad history with mapped drives in windows. It's also usually a
> > bad idea to use git over the network (and most mapped drives are over
> > the network and no
On Sat, Oct 19, 2013 at 2:11 PM, Fredrik Gustafsson wrote:
>
> Git has a bad history with mapped drives in windows. It's also usually a
> bad idea to use git over the network (and most mapped drives are over
> the network and not local between virt. machines).
>
> I would advise not to use this se
On Sat, Oct 19, 2013 at 11:49:27AM +0300, Ain Valtin wrote:
> Hi
>
> I want to use git in a VirtualBox guest so that the repository is on
> the host drive. So in the VB settings for the guest I set up a shared
> folder "gitRepos" to /home/ain with full access rights. Then in the
> guest OS (Window
Currently, most buffers created with PATH_MAX length, are not checked
when being written, and can overflow if PATH_MAX is not big enough to
hold the path.
Fix that by using strlcpy() where strcpy() was used, and also run some
extra checks when copy is done with memcpy().
Reported-by: Wataru Noguc
Hi,
On Sat, Oct 19, 2013 at 8:09 AM, Thomas Rast wrote:
>
> Previous Episodes
> =
>
> Git participated in Google Summer of Code (GSoC) 2007-2012, but did not
> participate in 2013 based on discussion in February [1]. At Git-Merge
> in Berlin there was a discussion round [2] that
On Wed, Oct 16, 2013 at 3:34 PM, Jeff King wrote:
> I was recently presented with a repository with a corrupted packfile,
> and was asked if the data was recoverable. This post-mortem describes
> the steps I took to investigate and fix the problem. I thought others
> might find the process interes
There seems to be some regression fixes regarding dos drives. The one
that caught my eyes is 7fbd422 (relative_path should honor
dos-drive-prefix - 2013-10-14) but it's not released yet. And I'm not
sure if msys branch picks it up yet even if you want to rebuild and
test it yourself. Copying Jiang
Hi
I want to use git in a VirtualBox guest so that the repository is on
the host drive. So in the VB settings for the guest I set up a shared
folder "gitRepos" to /home/ain with full access rights. Then in the
guest OS (Windows XP) I map this shared folder as G drive. Now in the
project dir I exec
Jeff King wrote:
> On Fri, Oct 18, 2013 at 03:14:49PM -0700, Junio C Hamano wrote:
>
> > * jn/add-2.0-u-A-sans-pathspec (2013-04-26) 1 commit
> > - git add: -u/-A now affects the entire working tree
> >
> > Will cook in 'next' until Git 2.0.
> >
> >
> > * jc/core-checkstat-2.0 (2013-05-06) 1
26 matches
Mail list logo