Git fork

Git 2.36-rc0

Signed-off-by: Junio C Hamano <gitster@pobox.com>

+33 -1
+32
Documentation/RelNotes/2.36.0.txt
··· 88 88 implementation detail, except for "git reset", to emit messages; 89 89 now "git reset" part has also been squelched. 90 90 91 + * "git ls-tree" learns "--oid-only" option, similar to "--name-only", 92 + and more generalized "--format" option. 93 + 94 + * "git fetch --refetch" learned to fetch everything without telling 95 + the other side what we already have, which is useful when you 96 + cannot trust what you have in the local object store. 97 + 98 + * "git branch" gives hint when branch tracking cannot be established 99 + because fetch refspecs from multiple remote repositories overlap. 100 + 101 + * "git worktree list --porcelain" did not c-quote pathnames and lock 102 + reasons with unsafe bytes correctly, which is worked around by 103 + introducing NUL terminated output format with "-z". 104 + 91 105 92 106 Performance, Internal Implementation, Development Support etc. 93 107 ··· 161 175 162 176 * Updates to refs traditionally weren't fsync'ed, but we can 163 177 configure using core.fsync variable to do so. 178 + 179 + * "git reflog" command now uses parse-options API to parse its 180 + command line options. 164 181 165 182 166 183 Fixes since v2.35 ··· 367 384 * When "shallow" information is updated, we forgot to update the 368 385 in-core equivalent, which has been corrected. 369 386 387 + * When creating a loose object file, we didn't report the exact 388 + filename of the file we failed to fsync, even though the 389 + information was readily available, which has been corrected. 390 + 391 + * "git am" can read from the standard input when no mailbox is given 392 + on the command line, but the end-user gets no indication when it 393 + happens, making Git appear stuck. 394 + (merge 7b20af6a06 jc/mailsplit-warn-on-tty later to maint). 395 + 396 + * "git mv" failed to refresh the cached stat information for the 397 + entry it moved. 398 + (merge b7f9130a06 vd/mv-refresh-stat later to maint). 399 + 370 400 * Other code cleanup, docfix, build fix, etc. 371 401 (merge cfc5cf428b jc/find-header later to maint). 372 402 (merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint). ··· 396 426 (merge c614beb933 ep/t6423-modernize later to maint). 397 427 (merge 57be9c6dee ab/reflog-prep-fix later to maint). 398 428 (merge 5327d8982a js/in-place-reverse-in-sequencer later to maint). 429 + (merge 2e2c0be51e dp/worktree-repair-in-usage later to maint). 430 + (merge 6563706568 jc/coding-guidelines-decl-in-for-loop later to maint).
+1 -1
GIT-VERSION-GEN
··· 1 1 #!/bin/sh 2 2 3 3 GVF=GIT-VERSION-FILE 4 - DEF_VER=v2.35.GIT 4 + DEF_VER=v2.36.0-rc0 5 5 6 6 LF=' 7 7 '