Git fork

Git 2.48-rc0

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

+23 -1
+22
Documentation/RelNotes/2.48.0.txt
··· 129 129 130 130 * Yet another "pass the repository through the callchain" topic. 131 131 132 + * "git describe" learned to stop digging the history needlessly 133 + deeper. 134 + 135 + * Build procedure update plus introduction of Meson based builds. 136 + 132 137 133 138 Fixes since v2.47 134 139 ----------------- ··· 242 247 * The --ancestry-path option is designed to be given a commit that is 243 248 on the path, which was not documented, which has been corrected. 244 249 (merge bc1a980759 kk/doc-ancestry-path later to maint). 250 + 251 + 252 + * "git tag" has been taught to refuse to create refs/tags/HEAD 253 + as such a tag will be confusing in the context of UI provided by 254 + the Git Porcelain commands. 255 + (merge bbd445d5ef jc/forbid-head-as-tagname later to maint). 256 + 257 + * The advice messages now tell the newer 'git config set' command to 258 + set the advice.token configuration variable to squelch a message. 259 + (merge 6c397d0104 bf/explicit-config-set-in-advice-messages later to maint). 260 + 261 + * The syntax ":/<text>" to name the latest commit with the matching 262 + text was broken with a recent change, which has been corrected. 263 + (merge 0ff919e87a ps/commit-with-message-syntax-fix later to maint). 264 + 265 + * Fix performance regression of a recent "fatten promisor pack with 266 + local objects" protection against an unwanted gc. 245 267 246 268 * Other code cleanup, docfix, build fix, etc. 247 269 (merge 77af53f56f aa/t7300-modernize later to maint).
+1 -1
GIT-VERSION-GEN
··· 1 1 #!/bin/sh 2 2 3 - DEF_VER=v2.47.GIT 3 + DEF_VER=v2.48.0-rc0 4 4 5 5 LF=' 6 6 '