Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cvs2cl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Karl Fogel
cvs2cl
Commits
0c7f5e64
Commit
0c7f5e64
authored
25 years ago
by
Karl Fogel
Browse files
Options
Downloads
Patches
Plain Diff
Change from Melissa O'Neill <oneill@cs.sfu.ca>:
Use a `here document' for the help message.
parent
3d4b232b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cvs2cl.pl
+21
-20
21 additions, 20 deletions
cvs2cl.pl
with
21 additions
and
20 deletions
cvs2cl.pl
+
21
−
20
View file @
0c7f5e64
...
...
@@ -514,24 +514,25 @@ sub version ()
sub
usage
()
{
&version
();
print
"
\n
";
print
"
Generates GNU-style ChangeLog files from CVS log information.
\n
";
print
"
Requires repository access (
\
'cvs log
\
' must work). Basic usage:
\n
";
print
"
just run it inside a working copy and a ChangeLog will appear.
\n
";
print
"
\n
";
print
"
Options:
";
print
"
\n
";
print
"
-h, -help, --help, or -?: Show this usage and exit
\n
";
print
"
--version: Show version and exit
\n
";
print
"
-d, --distributed: Put ChangeLogs in subdirs
\n
";
print
"
--stdin: Read from stdin, don't run cvs log
\n
";
print
"
--stdout: Output to stdout not to ChangeLog
\n
";
print
"
-f FILE, --file FILE: Use FILE instead of
\"
ChangeLog
\"\n
";
print
"
--prune: Don't show empty log messages
\n
";
print
"
-g OPTS, --global-opts OPTS: Run
\"
cvs OPTS log ...
\"\n
";
print
"
-l OPTS, --log-opts OPTS: Run
\"
cvs ... log OPTS
\"\n
";
print
"
\n
";
print
"
Maintainer: Karl Fogel <kfogel
\@
red-bean.com>
\n
";
print
"
Please report bugs to <cvs2cl-bugs
\@
red-bean.com>.
\n
";
print
"
\n
";
print
<<'END_OF_INFO';
Generates GNU-style ChangeLog files from CVS log information.
Requires repository access ('cvs log' must work). Basic usage:
just run it inside a working copy and a ChangeLog will appear.
Options:
-h, -help, --help, or -?: Show this usage and exit
--version: Show version and exit
-d, --distributed: Put ChangeLogs in subdirs
--stdin: Read from stdin, don't run cvs log
--stdout: Output to stdout not to ChangeLog
-f FILE, --file FILE: Use FILE instead of "ChangeLog"
--prune: Don't show empty log messages
-g OPTS, --global-opts OPTS: Run "cvs OPTS log ..."
-l OPTS, --log-opts OPTS: Run "cvs ... log OPTS"
Maintainer: Karl Fogel <kfogel@red-bean.com>
Please report bugs to <cvs2cl-bugs@red-bean.com>.
END_OF_INFO
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment