Commit Graph

3 Commits

Author SHA1 Message Date
brian m. carlson
9e006ac4e2
Rename default branch in tests to "main"
Currently, our default branch in tests is "master".  This is the Git
default, but the Git default will likely change in the future, so it
makes sense to update our testsuite to be explicit about the branch
name.  We'll ensure this continues by building against older versions of
Git as well as newer versions.

We use "main" for the new branch name, since that's the proposed value
upstream.

This commit was made entirely by automated means using the following
command:

  git grep -l master t | xargs sed -i -e 's/master/main/g'
2020-07-08 15:38:17 +00:00
d.struchkov
26c58fb2a8 t: remove unnecessary GIT_TRACE_PACK_ACCESS 2020-02-11 09:19:47 +03:00
d.struchkov
42237255b9 commands: avoid send on closed channel on 'delay'
Fix 'panic: send on closed channel' when cherry-pick several commits.
The issue occurs when LFS files of cherry-picked commits do not
exist in LFS cache. The first smudge command closes incoming channel
of TransferQueue and never opens it again. Resolve issue by creating
TransferQueue each 'smudge' command.
2020-02-10 21:45:40 +03:00