Git fork

CodingGuidelines: describe "export VAR=VAL" rule

https://lore.kernel.org/git/201307081121.22769.tboegi@web.de/
resulted in 9968ffff (test-lint: detect 'export FOO=bar',
2013-07-08) to add a rule to t/check-non-portable-shell.pl script to
reject

export VAR=VAL

and suggest us to instead write it as two statements, i.e.,

VAR=VAL
export VAR

This however was not spelled out in the CodingGuidelines document.

We may want to re-evaluate the rule since it is from ages ago, but
for now, let's make the written rule and what the automation
enforces consistent.

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

+4
+4
Documentation/CodingGuidelines
··· 188 188 hopefully nobody starts using "local" before they are reimplemented 189 189 in C ;-) 190 190 191 + - Some versions of shell do not understand "export variable=value", 192 + so we write "variable=value" and then "export variable" on two 193 + separate lines. 194 + 191 195 - Use octal escape sequences (e.g. "\302\242"), not hexadecimal (e.g. 192 196 "\xc2\xa2") in printf format strings, since hexadecimal escape 193 197 sequences are not portable.