svnlook(1) General Commands Manual svnlook(1)NAME
svnlook - Subversion repository examination tool
SYNOPSIS
svnlook command /path/to/repos [options] [args]
OVERVIEW
Subversion is a version control system, which allows you to keep old versions of files and directories (usually source code), keep a log of
who, when, and why changes occurred, etc., like CVS, RCS or SCCS. Subversion keeps a single copy of the master sources. This copy is
called the source ``repository''; it contains all the information to permit extracting previous versions of those files at any time.
For more information about the Subversion project, visit http://subversion.tigris.org.
Documentation for Subversion and its tools, including detailed usage explanations of the svn, svnadmin, svnserve and svnlook programs, his-
torical background, philosophical approaches and reasonings, etc., can be found at http://svnbook.red-bean.com/.
Run `svnlook help' to access the built-in tool documentation.
svnlook(1)
Check Out this Related Man Page
svnsync(1) General Commands Manual svnsync(1)NAME
svnsync - Subversion repository synchronization tool
SYNOPSIS
svnsync command dest-url [options] [args]
OVERVIEW
Subversion is a version control system, which allows you to keep old versions of files and directories (usually source code), keep a log of
who, when, and why changes occurred, etc., like CVS, RCS or SCCS. Subversion keeps a single copy of the master sources. This copy is
called the source ``repository''; it contains all the information to permit extracting previous versions of those files at any time.
For more information about the Subversion project, visit http://subversion.tigris.org.
Documentation for Subversion and its tools, including detailed usage explanations of the svn, svnadmin, svnserve and svnlook programs, his-
torical background, philosophical approaches and reasonings, etc., can be found at http://svnbook.red-bean.com/.
Run `svnsync help' to access the built-in tool documentation.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+--------------------+-----------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+--------------------+-----------------+
|Availability | SUNWsvn |
+--------------------+-----------------+
|Interface Stability | Volatile |
+--------------------+-----------------+
NOTES
Source for Subversion is available on http://opensolaris.org.
svnsync(1)
Hello all,
I am trying to write a post-commit hook script using bash script. What I am trying to do here is:
Developers check in their files to a branch. I check the repository and based on the commit I email QA people.
QA verifies and moves the files to a prod branch and email is sent... (1 Reply)
Hi,
I am executing a svnlook command to check to see if the following line exists. I need a regular expression to represent the line.
A /test/test1/qa/test2/index.html
A /test/test1/qa/test3/test.jpg
A /test/test1/qa/test3/test1.jpg
A /test/test1/qa/test4/test.swf
I just need to extract... (9 Replies)
I dont know if I am making any sense here. But I need to do something like this.
I have a variable that contains result from the svnlook command on a post-commit hook script.
test=`/usr/bin/svnlook changed $REPOS -r $REV | grep "^A.*index.html$"
and I get
test=A ... (18 Replies)
Upon opening Terminal I get the following message:
-bash: /usr/bin/manpath: No such file or directory
-bash: /usr/bin/perl: No such file or directory
-bash: grep: command not found
-bash: grep: command not found
-bash: grep: command not found
-bash: grep: command not found
I searched... (9 Replies)