Point out unnrelated formatting changes are discouraged
authorMichael Meffie <mmeffie@sinenomine.net>
Thu, 7 Nov 2019 19:00:58 +0000 (14:00 -0500)
committerMichael Meffie <mmeffie@sinenomine.net>
Thu, 7 Nov 2019 19:01:05 +0000 (14:01 -0500)
devel/GitDevelopers.mdwn

index f0dd0c0..ab2075e 100644 (file)
@@ -267,11 +267,18 @@ Secondly, each commit should have a meaningful revision log. The internals of gi
 
 Thirdly, each commit should have a valid changeID. Manually maintaining these is difficult and error prone, so we would strong advise that you install the changeID hook detailed earlier. This will automatically add a [[ChangeId]] line to your commit message if it doesn't already contain one.
 
-Fourthly, each commit must adhere to the OpenAFS whitespace policy whereby new commits will not be accepted if they have trailing spaces, spaces before tabs, or indentation without tabs.  Git can be configured to highlight the whitespace policy violation with the following global setting:
+Fourthly, each commit must adhere to the OpenAFS whitespace policy whereby new
+commits will not be accepted if they have trailing spaces, spaces before tabs,
+or indentation without tabs for new files and functions. The prevailing
+formating conventions for exsiting code should be followed.  Unrelated
+formatting changes to code is discouraged.
+
+Git can be configured to highlight the whitespace policy violation with the
+following global setting:
 
     git config --global core.whitespace trailing-space,space-before-tab,indent-with-non-tab
 
-and 
+and
 
     git rebase --whitespace=fix