Re: How to configure sendemail for no-auth?

2018-04-05 Thread astian
astian: > Olaf Hering:> My ~/.gitconfig looks like this, because all cloned > repositories require these settings: >> [sendemail] >> from = Olaf Hering <o...@aepfle.de> >> envelopesender = o...@aepfle.de >> chain

Re: How to configure sendemail for no-auth?

2018-04-05 Thread astian
Olaf Hering: > My ~/.gitconfig looks like this, because all cloned repositories require > these settings: > [sendemail] > from = Olaf Hering > envelopesender = o...@aepfle.de > chainreplyto = false > ccover = yes > smtpencryption = tls >

Re: [PATCH 0/2] Fix regression: CamelCased aliases

2017-07-14 Thread astian
FWIW, I don't like 2, I don't like the irregularity in the invocation: $ git branch * master $ git BRANCH git: 'BRANCH' is not a git command. See 'git --help'. $ git config alias.br 'branch -v' $ git br * master 51c785c initial $ git BR * master 51c785c initial There is also

Re: "groups of files" in Git?

2017-07-11 Thread astian
Nikolay Shustov wrote: > With Perforce, I can have multiple changelists opened, that group the > changed files as needed. > > With Git I cannot seem to finding the possibility to figure out how to > achieve the same result. And the problem is that putting change sets > on different Git branches

[PATCH 4/4] Doc/config.txt: fix documentation for smtpEncryption

2017-07-08 Thread astian
Stop saying that smtpEncryption (a configuration variable used by git-send-email) is not usable in "sendemail." subsections, because that's false. Signed-off-by: astian <ast...@eclipso.at> --- Documentation/config.txt | 5 + 1 file changed, 1 insertion(+), 4 deletion

[PATCH 3/4] Doc/git-send-email.txt: clarify a couple of options

2017-07-08 Thread astian
Clarify the meaning of --smtp-encryption and --smtp-server-option. Signed-off-by: astian <ast...@eclipso.at> --- Documentation/git-send-email.txt | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Documentation/git-send-email.txt b/Documentation/gi

[PATCH 2/4] Doc/config.txt: fix typos

2017-07-08 Thread astian
Signed-off-by: astian <ast...@eclipso.at> --- Documentation/config.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/config.txt b/Documentation/config.txt index d5c9c4cab..72e85b002 100644 --- a/Documentation/config.txt +++ b/Documentation/conf

[PATCH 1/4] Doc/config.txt: explain repeated sections

2017-07-08 Thread astian
Add a paragraph explaining what happens when a section name is repeated in the configuration file(s). The example configuration file shown in this document already implied Git's behaviour, this patch simply tries to make it explicit. Signed-off-by: astian <ast...@eclipso.at> --- Documen

[PATCH 0/4] Misc. documentation fixes

2017-07-08 Thread astian
and clarifications that you might find useful. They apply cleanly on top of commit 8b2efe2a0 (Fifteenth batch for 2.14). Note 1: even though I'm sending them as a "series", all of these are in fact independent of each other. Note 2: see below for a couple of patch-specific comments. astian (4): Doc/