Re: HP-UX (git-2.14.0) Depot File / Source Code Build throws SHA1 Error

2017-09-04 Thread Junio C Hamano
"josephpattara ." writes: > Firstly, I could see the SHA1 hash was definitely wrong. > -bash-4.3$ echo foo | ./git hash-object --stdin > 408935f8873a5ef17ef10cf2a316e51937e90f0b > ... > But I can confirm with the adapated source code from HPUX connect and > using the

Re: Git in Outreachy round 15?

2017-09-04 Thread Junio C Hamano
Jeff King writes: > 2. Do we have the money (and want to spend it on this)? > > The Git project does have money to cover at least one intern. > > I'm looking into securing outside funding, so that we don't have to > use project funds. If for whatever reason that

[PATCH] read-cache: fix index corruption with index v4

2017-09-04 Thread Thomas Gummerer
ce012deb98 ("read-cache: avoid allocating every ondisk entry when writing", 2017-08-21) changed the way cache entries are written to the index file. While previously it wrote the name to an struct that was allocated using xcalloc(), it now uses ce_write() directly. Previously ce_namelen - common

[PATCH] refs: make sure we never pass NULL to hashcpy

2017-09-04 Thread Thomas Gummerer
gcc on arch linux (version 7.1.1) warns that a NULL argument is passed as the second parameter of memcpy. In file included from refs.c:5:0: refs.c: In function ‘ref_transaction_verify’: cache.h:948:2: error: argument 2 null where non-null expected [-Werror=nonnull] memcpy(sha_dst, sha_src,

Re: [PATCH] hashmap: add API to disable item counting when threaded

2017-09-04 Thread Johannes Schindelin
Hi Peff, On Sat, 2 Sep 2017, Jeff King wrote: > On Sat, Sep 02, 2017 at 01:31:19AM +0200, Johannes Schindelin wrote: > > > > https://public-inbox.org/git/adb37b70139fd1e2bac18bfd22c8b96683ae18eb.1502780344.git.martin.ag...@gmail.com/ > > [...] > > > +static inline void

Re: HP-UX (git-2.14.0) Depot File / Source Code Build throws SHA1 Error

2017-09-04 Thread josephpattara .
Hello Jeff, Your information was very useful. Firstly, I could see the SHA1 hash was definitely wrong. -bash-4.3$ echo foo | ./git hash-object --stdin 408935f8873a5ef17ef10cf2a316e51937e90f0b I attempted to build the code with OPENSSL_SHA1=Yes and the build is working and I am able to do a git

ello

2017-09-04 Thread susans
Hi. I am Susan David Johnson ,please reply me

Apply for your loan today at 2%

2017-09-04 Thread Dario
Apply for your loan today at a very low interest rate of 2%..We offer loan to every Individuals and Company's... If you are in need of any kinds of loan, do contact us now for more info

[PATCHv2] pull: honor submodule.recurse config option

2017-09-04 Thread Nicolas Morey-Chaisemartin
"git pull" supports a --recurse-submodules option but does not parse the submodule.recurse configuration item to set the default for that option. Meanwhile "git fetch" does support submodule.recurse, producing confusing behavior: when submodule.recurse is enabled, "git pull" recursively fetches