summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-05-17 10:15:41 -0700
committerJunio C Hamano <gitster@pobox.com>2023-05-17 10:15:41 -0700
commit44d6c193d38d5f6e6992c55e63b9db942276a5d2 (patch)
tree3410ee6d9a3a875e9c1f38667390e753f4cd8e14
parentaaa68ad022d3100ff0342a515f672c7811644820 (diff)
parent004e0f790f947c9c511a9ac4f905021c7dbfa9e1 (diff)
downloadgit-44d6c193d38d5f6e6992c55e63b9db942276a5d2.tar.gz
Sync with 'master'
-rw-r--r--Documentation/RelNotes/2.41.0.txt6
-rw-r--r--imap-send.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.41.0.txt b/Documentation/RelNotes/2.41.0.txt
index e177aff2d0..a4b4b1d826 100644
--- a/Documentation/RelNotes/2.41.0.txt
+++ b/Documentation/RelNotes/2.41.0.txt
@@ -3,7 +3,7 @@ Git v2.41 Release Notes
UI, Workflows & Features
- * Allow information carried on the WWW-AUthenticate header to be
+ * Allow information carried on the WWW-Authenticate header to be
passed to the credential helpers.
* A new "fetch.hideRefs" option can be used to exclude specified refs
@@ -113,6 +113,10 @@ UI, Workflows & Features
* "git fetch" learned the "--porcelain" option that emits what it did
in a machine-parseable format.
+ * "git --attr-source=<tree> cmd $args" is a new way to have any
+ command to read attributes not from the working tree but from the
+ given tree object.
+
Performance, Internal Implementation, Development Support etc.
diff --git a/imap-send.c b/imap-send.c
index a62424e90a..7f5426177a 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -29,6 +29,7 @@
#include "run-command.h"
#include "parse-options.h"
#include "setup.h"
+#include "strbuf.h"
#include "wrapper.h"
#if defined(NO_OPENSSL) && !defined(HAVE_OPENSSL_CSPRNG)
typedef void *SSL;