brian m. carlson

Results 367 comments of brian m. carlson

Hey, Can you provide the output of running `ulimit -a` and the number of CPU cores you have? We try to limit the number of processes we use (and therefore...

Okay, it's helpful to know that 256 is the default on macOS. I think we'll probably need to bump down the number of processes we use. I probably haven't noticed...

I have a draft PR in #3842 that should fix this. Could you possibly test with that branch and see if it fixes the issue for you? If not, I...

Can you try again with the version I've just pushed up which makes that change?

Hey, thanks for writing in. Can you run the `git push origin master` with `GIT_TRACE=1 GIT_TRANSFER_TRACE=1 GIT_CURL_VERBOSE=1` so we can see what the push looks like?

Can you help me understand why `xargs` isn't sufficient here? It seems like that should work just fine in most cases, and I know it's included with Git for Windows,...

Hey, My guess as to what's going on here is that on some branches, you have some files that are in LFS, and on other branches, they're not. That's because...

Yes, it's known that the normal Git commands can't recover from that; that's a limitation in Git that we can't avoid. It is generally better to match general patterns whenever...

Hey, Do you know what type of authentication your proxy requires? I believe at the moment we only support Basic. Also, does the operation work if you specify the credentials...

I don't use a proxy, so I can't speak to whether Git uses a credential helper for this, but if it does, we can add support for that as well....