xref: /illumos-gate/usr/src/tools/scripts/git-pbchk.1onbld (revision abb88ab1b9516b1ca12094db7f2cfb5d91e0a135)
t

This file and its contents are supplied under the terms of the
Common Development and Distribution License ("CDDL"), version 1.0.
You may only use this file in accordance with the terms of version
1.0 of the CDDL.

A full copy of the text of the CDDL should have accompanied this
source. A copy of the CDDL is also available via the Internet at
http://www.illumos.org/license/CDDL.


Copyright 2011 Richard Lowe.
Copyright 2015 Elysium Digital, L.L.C.
Copyright 2018 Joyent, Inc.

"GIT-PBCHK" "1ONBLD" "February 10, 2022" "" ""
"NAME"
git-pbchk - nits and pre-putback checks for git
"SYNOPSIS"
git-pbchk [-c check] [-p branch] [file...]

git-nits [-c check] [-p branch] [file...]

"OPTIONS"

-c check:

Run the specific check, as named below. In this mode, individual files can be provided to check.

-p branch:

Compare the current workspace to the parent branch for the purposes of generating file and comment lists\.
If this option is not specified an attempt is made to determine this automatically, if the git branch configuration contains this information\.
If no branch is specified and none can be determined automatically origin/master is used\.
"DESCRIPTION"
Check your workspace for common nits and putback-ending mistakes, a simple set of checks are run over various parts of your workspace and errors encountered are reported, all of which should, generally, be fixed\.

Comment format [comchk] Check that putback comments follow the prescribed format (only run for pbchk)

Copyrights [copyright] Check that each source file contains a copyright notice for the current year\. You don't need to fix this if you, the potential new copyright holder, chooses not to

C style [cstyle] Check that C source files conform to the illumos C style rules

Header check [hdrchk] Check that C header files conform to the illumos header style rules (in addition to the general C rules)

Java style [jstyle] Check that Java source files conform to the illumos Java style rules (which differ from the traditionally recommended Java style)

SCCS Keywords [keywords] Check that no source files contain unexpanded SCCS keywords\. It is possible that this check may false positive on certain inputs\. It is generally obvious when this is the case\.

This check does not check for expanded SCCS keywords, though the common \'ident\'-style lines should be removed regardless of whether they are expanded\.

Man page check [manlint] Check for problems with man pages.

Mapfile check [mapfilechk] Check that linker mapfiles contain a comment directing anyone editing to read the directions in usr/lib/README\.mapfiles\.

Whitespace check [wscheck] Check for whitespace issues such as mixed tabs/spaces in source files.

"FILES"
Exception lists can be used to exclude certain files from checking, named after the specific check. They can be found in $CODEMGR_WS/exception_lists/, or optionally under $CODEMGR_WS/\.git/info/, where they must be suffixed .NOT.
"" 0