From 646304a6e7c3b2c442a0a7db995629e7009c3a14 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Sun, 11 Nov 2007 17:59:18 -0800 Subject: added documentation and a license file --- doc/classes/Git.html | 284 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 284 insertions(+) create mode 100644 doc/classes/Git.html (limited to 'doc/classes/Git.html') diff --git a/doc/classes/Git.html b/doc/classes/Git.html new file mode 100644 index 0000000..3ddaacf --- /dev/null +++ b/doc/classes/Git.html @@ -0,0 +1,284 @@ + + + + + + Module: Git + + + + + + + + + + +
+ + + + + + + + + + +
ModuleGit
In: + + lib/git/base.rb + +
+ + lib/git/branch.rb + +
+ + lib/git/branches.rb + +
+ + lib/git/diff.rb + +
+ + lib/git/index.rb + +
+ + lib/git/lib.rb + +
+ + lib/git/log.rb + +
+ + lib/git/object.rb + +
+ + lib/git/path.rb + +
+ + lib/git/remote.rb + +
+ + lib/git/repository.rb + +
+ + lib/git/status.rb + +
+ + lib/git/working_directory.rb + +
+ + lib/git.rb + +
+
+
+ + +
+ + + +
+ + + +
+ +
+

Methods

+ +
+ bare   + clone   + init   + open   +
+
+ +
+ + + + +
+ +
+

Classes and Modules

+ + Class Git::Base
+Class Git::Branch
+Class Git::Branches
+Class Git::Diff
+Class Git::GitExecuteError
+Class Git::GitTagNameDoesNotExist
+Class Git::Index
+Class Git::Lib
+Class Git::Log
+Class Git::Object
+Class Git::Path
+Class Git::Remote
+Class Git::Repository
+Class Git::Status
+Class Git::WorkingDirectory
+ +
+ + + + + + + + +
+

Public Class methods

+ +
+ + + + +
+

[Source]

+
+
+# File lib/git.rb, line 34
+  def self.bare(git_dir)
+    Base.bare(git_dir)
+  end
+
+
+
+
+ +
+ + + + +
+

[Source]

+
+
+# File lib/git.rb, line 46
+  def self.clone(repository, name, options = {})
+    Base.clone(repository, name, options)
+  end
+
+
+
+
+ +
+ + + + +
+

[Source]

+
+
+# File lib/git.rb, line 42
+  def self.init(working_dir = '.', options = {})
+    Base.init(working_dir, options)
+  end
+
+
+
+
+ +
+ + + + +
+

[Source]

+
+
+# File lib/git.rb, line 38
+  def self.open(working_dir, options = {})
+    Base.open(working_dir, options)
+  end
+
+
+
+
+ + +
+ + +
+ + +
+

[Validate]

+
+ + + \ No newline at end of file -- cgit