summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3bae8d4)
raw | patch | inline | side by side (parent: 3bae8d4)
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | |
Fri, 3 Dec 2010 16:47:35 +0000 (17:47 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 3 Dec 2010 23:22:59 +0000 (15:22 -0800) |
Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/CodingGuidelines | patch | blob | history |
index 09ffc46563cba1057b37ba4a5701858fb95c5dda..46f8a3fab13f71623ef6dbc4239067e8daa9dc59 100644 (file)
For shell scripts specifically (not exhaustive):
+ - We use tabs for indentation.
+
+ - Case arms are indented at the same depth as case and esac lines.
+
- We prefer $( ... ) for command substitution; unlike ``, it
properly nests. It should have been the way Bourne spelled
it from day one, but unfortunately isn't.