Module: Git
- Defined in:
- lib/git.rb,
lib/git/lib.rb,
lib/git/log.rb,
lib/git/base.rb,
lib/git/diff.rb,
lib/git/path.rb,
lib/git/index.rb,
lib/git/stash.rb,
lib/git/author.rb,
lib/git/branch.rb,
lib/git/config.rb,
lib/git/object.rb,
lib/git/remote.rb,
lib/git/status.rb,
lib/git/stashes.rb,
lib/git/version.rb,
lib/git/branches.rb,
lib/git/worktree.rb,
lib/git/worktrees.rb,
lib/git/repository.rb,
lib/git/base/factory.rb,
lib/git/working_directory.rb
Overview
The Git module provides the basic functions to open a git reference to work with. You can open a working directory, open a bare repository, initialize a new repo or clone an existing remote repository.
Defined Under Namespace
Classes: Author, Base, Branch, Branches, Config, Diff, GitExecuteError, GitTagNameDoesNotExist, Index, Lib, Log, Object, Path, Remote, Repository, Stash, Stashes, Status, WorkingDirectory, Worktree, Worktrees
Constant Summary collapse
- VERSION =
The current gem version
'1.8.1'
Class Method Summary collapse
-
.bare(git_dir, options = {}) ⇒ Git::Base
Open a bare repository.
-
.clone(repository, name, options = {}) ⇒ Git::Base
Clone a repository into an empty or newly created directory.
- .config
- .configure {|Base.config| ... }
-
.export(repository, name, options = {})
Export the current HEAD (or a branch, if options[:branch] is specified) into the +name+ directory, then remove all traces of git from the directory.
-
.global_config(name = nil, value = nil)
Same as g.config, but forces it to be at the global level.
-
.init(directory = '.', options = {}) ⇒ Git::Base
Create an empty Git repository or reinitialize an existing Git repository.
-
.ls_remote(location = nil, options = {}) ⇒ {String=>Hash}
returns a Hash containing information about the references of the target repository.
-
.open(working_dir, options = {}) ⇒ Git::Base
Open a an existing Git working directory.
Instance Method Summary collapse
-
#config(name = nil, value = nil)
g.config('user.name', 'Scott Chacon') # sets value g.config('user.email', '[email protected]') # sets value g.config('user.name') # returns 'Scott Chacon' g.config # returns whole config hash.
- #global_config(name = nil, value = nil)
Class Method Details
.bare(git_dir, options = {}) ⇒ Git::Base
Open a bare repository
Opens a bare repository located in the git_dir
directory.
Since there is no working copy, you can not checkout or commit
but you can do most read operations.
98 99 100 |
# File 'lib/git.rb', line 98 def self.(git_dir, = {}) Base.(git_dir, ) end |
.clone(repository, name, options = {}) ⇒ Git::Base
Clone a repository into an empty or newly created directory
158 159 160 |
# File 'lib/git.rb', line 158 def self.clone(repository, name, = {}) Base.clone(repository, name, ) end |
.configure {|Base.config| ... }
58 59 60 |
# File 'lib/git.rb', line 58 def self.configure yield Base.config end |
.export(repository, name, options = {})
Export the current HEAD (or a branch, if options[:branch] is specified) into the +name+ directory, then remove all traces of git from the directory.
See +clone+ for options. Does not obey the :remote option, since the .git info will be deleted anyway; always uses the default remote, 'origin.'
169 170 171 172 173 174 |
# File 'lib/git.rb', line 169 def self.export(repository, name, = {}) .delete(:remote) repo = clone(repository, name, {:depth => 1}.merge()) repo.checkout("origin/#{[:branch]}") if [:branch] Dir.chdir(repo.dir.to_s) { FileUtils.rm_r '.git' } end |
.global_config(name = nil, value = nil)
Same as g.config, but forces it to be at the global level
g.config('user.name', 'Scott Chacon') # sets value g.config('user.email', '[email protected]') # sets value g.config('user.name') # returns 'Scott Chacon' g.config # returns whole config hash
182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/git.rb', line 182 def self.global_config(name = nil, value = nil) lib = Git::Lib.new(nil, nil) if(name && value) # set value lib.global_config_set(name, value) elsif (name) # return value lib.global_config_get(name) else # return hash lib.global_config_list end end |
.init(directory = '.', options = {}) ⇒ Git::Base
Create an empty Git repository or reinitialize an existing Git repository
243 244 245 |
# File 'lib/git.rb', line 243 def self.init(directory = '.', = {}) Base.init(directory, ) end |
.ls_remote(location = nil, options = {}) ⇒ {String=>Hash}
returns a Hash containing information about the references of the target repository
options :refs
255 256 257 |
# File 'lib/git.rb', line 255 def self.ls_remote(location = nil, = {}) Git::Lib.new.ls_remote(location, ) end |
.open(working_dir, options = {}) ⇒ Git::Base
Open a an existing Git working directory
Git.open will most likely be the most common way to create a git reference, referring to an existing working directory.
If not provided in the options, the library will assume
the repository and index are in the default places (.git/
, .git/index
).
303 304 305 |
# File 'lib/git.rb', line 303 def self.open(working_dir, = {}) Base.open(working_dir, ) end |
Instance Method Details
#config(name = nil, value = nil)
g.config('user.name', 'Scott Chacon') # sets value g.config('user.email', '[email protected]') # sets value g.config('user.name') # returns 'Scott Chacon' g.config # returns whole config hash
44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/git.rb', line 44 def config(name = nil, value = nil) lib = Git::Lib.new if(name && value) # set value lib.config_set(name, value) elsif (name) # return value lib.config_get(name) else # return hash lib.config_list end end |
#global_config(name = nil, value = nil)
66 67 68 |
# File 'lib/git.rb', line 66 def global_config(name = nil, value = nil) self.class.global_config(name, value) end |