Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GNU CVS
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirabilos
GNU CVS
Commits
7d29c84c
Commit
7d29c84c
authored
15 years ago
by
scjones
Browse files
Options
Downloads
Patches
Plain Diff
merge changes from cvs1-11-x-branch
parent
93d3bb1c
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/ChangeLog
+6
-0
6 additions, 0 deletions
doc/ChangeLog
doc/cvs.texinfo
+36
-1
36 additions, 1 deletion
doc/cvs.texinfo
doc/stamp-vti
+2
-2
2 additions, 2 deletions
doc/stamp-vti
doc/version.texi
+2
-2
2 additions, 2 deletions
doc/version.texi
with
46 additions
and
5 deletions
doc/ChangeLog
+
6
−
0
View file @
7d29c84c
2009-12-15 Larry Jones <lawrence.jones@siemens.com>
* cvs.texinfo (commitinfo): Add example.
* cvs.texinfo: Minor tweaks for consistency.
* cvs.1, stamp-vti, version.texi: Regenerated.
2009-11-11 Derek Price <derek@ximbiot.com>
2009-11-11 Derek Price <derek@ximbiot.com>
* cvs.texinfo (Updating Commit Files): Update default taginfo string.
* cvs.texinfo (Updating Commit Files): Update default taginfo string.
...
...
This diff is collapsed.
Click to expand it.
doc/cvs.texinfo
+
36
−
1
View file @
7d29c84c
...
@@ -2663,7 +2663,7 @@ to have @code{inetd} run a shell script which then invokes
...
@@ -2663,7 +2663,7 @@ to have @code{inetd} run a shell script which then invokes
@sc{cvs} with the necessary arguments:
@sc{cvs} with the necessary arguments:
@example
@example
#!
/bin/sh
#!/bin/sh
exec /usr/local/bin/cvs -f \
exec /usr/local/bin/cvs -f \
--allow-root=/repo1 \
--allow-root=/repo1 \
--allow-root=/repo2 \
--allow-root=/repo2 \
...
@@ -14425,6 +14425,41 @@ to the command.
...
@@ -14425,6 +14425,41 @@ to the command.
@c general CVS security in "Password authentication
@c general CVS security in "Password authentication
@c security" (the bit which is not pserver-specific).
@c security" (the bit which is not pserver-specific).
The following is a little silly example of a
@file{commitinfo} file and a verification script
that prevents commiting files named @samp{thumbs.db}
(case insensitive).
The script @file{/usr/cvssupport/names.verify} is used to
evaluate the names of the files being committed.
@example
#!/bin/sh
#
# names.verify repos file...
#
# Verifies that the file names are all acceptable
#
shift
for file
do
case "$file" in
[Tt][Hh][Uu][Mm][Bb][Ss].[Dd][Bb])
echo "Disallowed file name: $file"
exit 1
;;
esac
done
exit 0
@end example
The @file{commitinfo} file contains this line:
@example
^tc /usr/cvssupport/names.verify
@end example
@c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@node verifymsg
@node verifymsg
@appendixsubsec Verifying log messages
@appendixsubsec Verifying log messages
...
...
This diff is collapsed.
Click to expand it.
doc/stamp-vti
+
2
−
2
View file @
7d29c84c
@set UPDATED 1
1 Nov
ember 2009
@set UPDATED 1
5 Dec
ember 2009
@set UPDATED-MONTH
Nov
ember 2009
@set UPDATED-MONTH
Dec
ember 2009
@set EDITION 1.12.13.1
@set EDITION 1.12.13.1
@set VERSION 1.12.13.1
@set VERSION 1.12.13.1
This diff is collapsed.
Click to expand it.
doc/version.texi
+
2
−
2
View file @
7d29c84c
@set UPDATED 1
1 Nov
ember 2009
@set UPDATED 1
5 Dec
ember 2009
@set UPDATED-MONTH
Nov
ember 2009
@set UPDATED-MONTH
Dec
ember 2009
@set EDITION 1.12.13.1
@set EDITION 1.12.13.1
@set VERSION 1.12.13.1
@set VERSION 1.12.13.1
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