class Git::Si::SvnInterface

Public Instance Methods

add(*args) click to toggle source
# File lib/git/si.rb, line 76
def add(*args)
  configure
  do_add_action( args )
end
atune() click to toggle source
# File lib/git/si.rb, line 120
def atune
  configure
  do_atune_action
end
commit() click to toggle source
# File lib/git/si.rb, line 111
def commit
  configure
  do_commit_action
end
diff(*args) click to toggle source
# File lib/git/si.rb, line 67
def diff(*args)
  configure
  do_diff_action( args )
end
fetch() click to toggle source
# File lib/git/si.rb, line 85
def fetch
  configure
  do_fetch_action
end
init() click to toggle source
# File lib/git/si.rb, line 138
def init
  configure
  do_init_action
end
pull() click to toggle source
# File lib/git/si.rb, line 103
def pull
  do_pull_action
end
readd() click to toggle source
# File lib/git/si.rb, line 129
def readd
  configure
  do_readd_action
end
rebase() click to toggle source
# File lib/git/si.rb, line 94
def rebase
  configure
  do_rebase_action
end
status(*args) click to toggle source
# File lib/git/si.rb, line 58
def status(*args)
  configure
  do_status_action( args )
end
usage() click to toggle source
# File lib/git/si.rb, line 40
      def usage
        say "#{Git::Si::Version.version_string}

Git Svn Interface: a simple git extention to use git locally with a remote svn
repository. It's like a simple version of git-svn just for using local
branching. It does not keep track of the full history of the svn repository.

Start with the init command to set up the mirror branch and from there you can
use the commands below.

"
        help
      end
version() click to toggle source
# File lib/git/si.rb, line 32
def version
  say Git::Si::Version.version_string
end