SmartSVN 4.0.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SmartSVN 4.0.4 (Default branch)
# 1  
Old 09-03-2008
SmartSVN 4.0.4 (Default branch)

ImageSmartSVN is a feature-rich and easy-to-use Subversion client. It runs on Linux, Mac OS X, OS/2, Unix, and Windows. In addition to the normal SVN commands like checkout, update, commit, merge, etc., it provides tag and branch handling (no need to deal with URLs just to switch to a different tag or branch), a built-in file compare and conflict solver, and much more. There is no need to install additional tools for handling SVN working copies, like a command line SVN client or a file comparison tool.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Git::SVN::Editor(3)					User Contributed Perl Documentation				       Git::SVN::Editor(3)

NAME
Git::SVN::Editor - commit driver for "git svn set-tree" and dcommit SYNOPSIS
use Git::SVN::Editor; use Git::SVN::Ra; my $ra = Git::SVN::Ra->new($url); my %opts = ( r => 19, log => "log message", ra => $ra, config => SVN::Core::config_get_config($svn_config_dir), tree_a => "$commit^", tree_b => "$commit", editor_cb => sub { print "Committed r$_[0] "; }, mergeinfo => "/branches/foo:1-10", svn_path => "trunk" ); Git::SVN::Editor->new(\%opts)->apply_diff or print "No changes "; my $re = Git::SVN::Editor::glob2pat("trunk/*"); if ($branchname =~ /$re/) { print "matched! "; } DESCRIPTION
This module is an implementation detail of the "git svn" command. Do not use it unless you are developing git-svn. This module adapts the "SVN::Delta::Editor" object returned by "SVN::Delta::get_commit_editor" and drives it to convey the difference between two git tree objects to a remote Subversion repository. The interface will change as git-svn evolves. DEPENDENCIES
Subversion perl bindings, the core Carp and IO::File modules, and git's Git helper module. "Git::SVN::Editor" has not been tested using callers other than git-svn itself. SEE ALSO
SVN::Delta, Git::SVN::Fetcher. INCOMPATIBILITIES
None reported. BUGS
None. perl v5.16.3 2013-06-10 Git::SVN::Editor(3)