| Summary: | GitHub version doesn't include ChangeLog | ||
|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | Venkat Yekkirala <vyekkira> |
| Component: | Documentation | Assignee: | Assigned to nobody <unassigned-bugs> |
| Status: | CLOSED WORKSFORME | ||
| Severity: | enhancement | CC: | djm, dtucker |
| Priority: | P5 | ||
| Version: | 7.1p1 | ||
| Hardware: | 68k | ||
| OS: | Mac OS X | ||
|
Description
Venkat Yekkirala
2015-12-15 04:02:05 AEDT
The changelog is generated at release from the git log. It doesn't exist as a file in the repository, but you can see exactly the same information using 'git log' or https://github.com/openssh/openssh-portable/commits/master Thanks for the info. One other newbie question: In the release tarball, there are some *.0 man pages. I would be grateful for insight into their generation and how they differ from the regular man pages that are on github. Thanks again. (In reply to Venkat Yekkirala from comment #2) > In the release tarball, there are some *.0 man pages. I would be > grateful for insight into their generation and how they differ from > the regular man pages that are on github. Thanks again. They're just the output of the man page formatter. They're generated by the Makefile: https://github.com/openssh/openssh-portable/blob/master/Makefile.in#L281 Basically it's going to run something like "nroff -mandoc ssh.1 >ssh.0" (exact command depending on your system, see https://github.com/openssh/openssh-portable/blob/master/configure.ac#L51). Close all resolved bugs after 7.3p1 release |