A class to represent a subversion repository.
An object to represent an SVN repository.
Methods
Check out an SVN repository specified by URL.
Parameters : | url : str
|
---|
Get a list of the contents of the repository.
Parameters : | recursive : bool
|
---|---|
Returns : | list of str :
|
Get the contents of the repository as a single string.
Parameters : | recursive : bool
|
---|---|
Returns : | str :
|
Get the current revision of the repository.
Returns : | int :
|
---|
Get the status list of the SVN repository.
Returns : | list of str :
|
---|
Get the status of the SVN repository.
Returns : | str :
|
---|
Update the repository to reflect changes in the local filesystem.
When files are added to or removed from the folder tree where the working copy is stored, the repository does not know what to do with them. To keep the entire tree properly versioned, mark every missing element as “deleted” and every new (“unversioned”) element as “added.”