You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
In an effort to help you support a man page for git-lint, this can be a place for sharing information about git man pages.
The command git --man-path let's you know where the man pages for git are stored on your system.
For example, on OSX, it seems that if path/to/git is the installation directory for git, then your man page belongs in path/to/git/2.4.0/share/man/man1, where 2.4.0 is the version number of the git installation. More specifically, you want to create the file path/to/git/2.4.0/share/man/man1/git-lint.1. On FreeBSD, it seems that the man pages belong in /usr/local/man/man1. On ubuntu, the man pages belong in /usr/share/man/man1.
I have verified that the mere presence of a proper man page file named git-lint.1 in that location will cause git help lint and git lint --help to function correctly as wanted. It is necessary that git-lint is in fact installed in order for this to work. Otherwise, the same command will look for the file gitlint.1 (without the dash) instead.
In an effort to help you support a man page for git-lint, this can be a place for sharing information about git man pages.
The command
git --man-pathlet's you know where the man pages for git are stored on your system.For example, on OSX, it seems that if
path/to/gitis the installation directory for git, then your man page belongs inpath/to/git/2.4.0/share/man/man1, where 2.4.0 is the version number of the git installation. More specifically, you want to create the filepath/to/git/2.4.0/share/man/man1/git-lint.1. On FreeBSD, it seems that the man pages belong in/usr/local/man/man1. On ubuntu, the man pages belong in/usr/share/man/man1.I have verified that the mere presence of a proper man page file named
git-lint.1in that location will causegit help lintandgit lint --helpto function correctly as wanted. It is necessary that git-lint is in fact installed in order for this to work. Otherwise, the same command will look for the file gitlint.1 (without the dash) instead.