class Rugged::Submodule
Public Instance Methods
Add current submodule HEAD
commit to the index of superproject.
The following options can be passed in the options
Hash:
- :write_index
-
(default
true
) If this should immediately write the index file. If passed asfalse
,Rugged::Repository#index
can be used to explicitly callRugged::Index#write
to save the change.
static VALUE rb_git_submodule_add_to_index(int argc, VALUE *argv, VALUE self) { git_submodule *submodule; VALUE rb_options; int write_index = 1; Data_Get_Struct(self, git_submodule, submodule); rb_scan_args(argc, argv, ":", &rb_options); if (!NIL_P(rb_options)) { VALUE rb_val; rb_val = rb_hash_aref(rb_options, CSTR2SYM("write_index")); write_index = (rb_val != Qfalse); } rugged_exception_check( git_submodule_add_to_index(submodule, write_index) ); return self; }
Returns true
if submodule is in index, not in HEAD
.
static VALUE rb_git_submodule_status_added_to_index(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_ADDED) }
Returns true
if submodule is in workdir, not index.
static VALUE rb_git_submodule_status_added_to_workdir(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_ADDED) }
Returns true
if submodule is in HEAD
, not in index
static VALUE rb_git_submodule_status_deleted_from_index(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_DELETED) }
Returns true
if submodule is in index, not workdir.
static VALUE rb_git_submodule_status_deleted_from_workdir(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_DELETED) }
Returns true
if the submodule workdir is dirty.
The workdir is considered dirty if the workdir index is modified, there are modified files in the workdir or if there are untracked files in the workdir.
static VALUE rb_git_submodule_status_dirty_workdir(VALUE self) { RB_GIT_SUBMODULE_STATUS_CHECK(GIT_SUBMODULE_STATUS_IS_WD_DIRTY) }
Returns true
if submodule workdir index is dirty.
static VALUE rb_git_submodule_status_dirty_workdir_index(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_INDEX_MODIFIED) }
Returns the fetchRecurseSubmodules
rule for a submodule.
This accesses the submodule.<name>.fetchRecurseSubmodules
value for the submodule that controls fetching behavior for the submodule.
Note that at this time, Rugged
does not honor this setting and the fetch functionality currently ignores submodules.
static VALUE rb_git_submodule_fetch_recurse_submodules(VALUE self) { git_submodule *submodule; Data_Get_Struct(self, git_submodule, submodule); return git_submodule_fetch_recurse_submodules(submodule) ? Qtrue : Qfalse; }
Resolve the setup of a new submodule.
This should be called on a submodule once Rugged::SubmoduleCollection#setup_add
is finished and the sumodule repo is cloned.
This adds the .gitmodules
file and the newly cloned submodule to the index to be ready to be committed (but doesn’t actually do the commit).
static VALUE rb_git_submodule_finalize_add(VALUE self) { git_submodule *submodule; Data_Get_Struct(self, git_submodule, submodule); rugged_exception_check( git_submodule_add_finalize(submodule) ); return self; }
Returns the OID for the submodule in the current HEAD
tree or nil
if the submodule is not in the HEAD
.
static VALUE rb_git_submodule_head_id(VALUE self) { RB_GIT_OID_GETTER(submodule, head_id); }
Returns the ignore rule for a submodule.
There are four ignore values:
- :none (default)
-
will consider any change to the contents of the submodule from a clean checkout to be dirty, including the addition of untracked files.
- :untracked
-
examines the contents of the working tree but untracked files will not count as making the submodule dirty.
- :dirty
-
means to only check if the
HEAD
of the submodule has moved for status. This is fast since it does not need to scan the working tree of the submodule at all. - :all
-
means not to open the submodule repository. The working directory will be considered clean so long as there is a checked out version present.
See status
on how ignore rules reflect the returned status info for a submodule.
static VALUE rb_git_submodule_ignore_rule(VALUE self) { git_submodule *submodule; git_submodule_ignore_t ignore; Data_Get_Struct(self, git_submodule, submodule); ignore = git_submodule_ignore(submodule); return rb_git_subm_ignore_rule_fromC(ignore); }
Returns true
if superproject .gitmodules
has submodule.
static VALUE rb_git_submodule_status_in_config(VALUE self) { RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_CONFIG) }
Returns true
if superproject HEAD
contains submodule.
static VALUE rb_git_submodule_status_in_head(VALUE self) { RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_HEAD) }
Returns true
if superproject index contains submodule.
static VALUE rb_git_submodule_status_in_index(VALUE self) { RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_INDEX) }
Returns true
if superproject workdir has submodule.
static VALUE rb_git_submodule_status_in_workdir(VALUE self) { RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_WD) }
Returns the OID for the submodule in the index or nil
if the submodule is not in the index.
static VALUE rb_git_submodule_index_id(VALUE self) { RB_GIT_OID_GETTER(submodule, index_id); }
Copy submodule info into +.git/config+ file. Just like <tt>"git submodule init"</tt>, this copies information about the submodule into +.git/config+.
The following options can be passed in the options
Hash:
:overwrite :: (defaults to +false+) - By default, existing entries will not be overwritten, but setting this to +true+ forces them to be updated.
static VALUE rb_git_submodule_init(int argc, VALUE *argv, VALUE self) { git_submodule *submodule; VALUE rb_options; int overwrite = 0; Data_Get_Struct(self, git_submodule, submodule); rb_scan_args(argc, argv, ":", &rb_options); if (!NIL_P(rb_options)) { VALUE rb_val; rb_val = rb_hash_aref(rb_options, CSTR2SYM("overwrite")); overwrite = RTEST(rb_val); } rugged_exception_check( git_submodule_init(submodule, overwrite) ); return self; }
Returns true
if submodule workdir has modified files.
static VALUE rb_git_submodule_status_modified_files_in_workdir(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_WD_MODIFIED) }
Returns true
if submodule in index and HEAD
don’t match.
static VALUE rb_git_submodule_status_modified_in_index(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_MODIFIED) }
Returns true
if submodule in index and workdir HEAD
don’t match.
static VALUE rb_git_submodule_status_modified_in_workdir(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_MODIFIED) }
Returns the name of the submodule.
static VALUE rb_git_submodule_name(VALUE self) { git_submodule *submodule; const char *name; Data_Get_Struct(self, git_submodule, submodule); name = git_submodule_name(submodule); return rb_str_new_utf8(name); }
Returns the path of the submodule.
The path
is almost always the same as the name
, but the two are actually not required to match.
static VALUE rb_git_submodule_path(VALUE self) { git_submodule *submodule; const char *path; Data_Get_Struct(self, git_submodule, submodule); path = git_submodule_path(submodule); return rb_str_new_utf8(path); }
Reread submodule info from config, index, and HEAD
.
Call this to reread cached submodule information for this submodule if there is reason to believe that it has changed.
static VALUE rb_git_submodule_reload(VALUE self) { git_submodule *submodule; Data_Get_Struct(self, git_submodule, submodule); rugged_exception_check( git_submodule_reload(submodule, 1) ); return self; }
Returns the repository
for the submodule.
The returned repository
is a newly opened Rugged::Repository
object. This will only work if the submodule is checked out into the working directory.
static VALUE rb_git_submodule_repository(VALUE self) { git_submodule *submodule; git_repository *repo; Data_Get_Struct(self, git_submodule, submodule); rugged_exception_check( git_submodule_open(&repo, submodule) ); return rugged_repo_new(rb_cRuggedRepo, repo); }
Returns an array
with the status flags for a submodule.
Depending on the ignore_rule
property of the submodule, some of the flags may never be returned because they indicate changes that are supposed to be ignored.
Submodule
info is contained in 4 places: the HEAD
tree, the index, config files (both .git/config
and .gitmodules
), and the working directory. Any or all of those places might be missing information about the submodule depending on what state the repository is in. We consider all four places to build the combination of status flags.
There are four values that are not really status, but give basic info about what sources of submodule data are available. These will be returned even if ignore is set to :all
.
- :in_head
-
superproject
HEAD
contains submodule - :in_index
-
superproject index contains submodule
- :in_config
-
superproject
.gitmodules
has submodule - :in_workdir
-
superproject workdir has submodule
The following values will be returned as long as ignore is not :all
.
- :added_to_index
-
submodule is in index, not in
HEAD
- :deleted_from_index
-
submodule is in
HEAD
, not in index - :modified_in_index
-
submodule in index and
HEAD
don’t match - :uninitialized
-
submodule in workdir is not initialized
- :added_to_workdir
-
submodule is in workdir, not index
- :deleted_from_workdir
-
submodule is in index, not workdir
- :modified_in_workdir
-
submodule in index and workdir
HEAD
don’t match
The following can only be returned if ignore is :none
or :untracked
.
- :dirty_workdir_index
-
submodule workdir index is dirty
- :modified_files_in_workdir
-
submodule workdir has modified files
Lastly, the following will only be returned for ignore :none
.
- :untracked_files_in_workdir
-
submodule workdir contains untracked files
static VALUE rb_git_submodule_status(VALUE self) { VALUE rb_repo = rugged_owner(self); git_submodule *submodule; git_repository *repo; unsigned int flags; rugged_check_repo(rb_repo); Data_Get_Struct(rb_repo, git_repository, repo); Data_Get_Struct(self, git_submodule, submodule); rugged_exception_check( git_submodule_status(&flags, repo, git_submodule_name(submodule), GIT_SUBMODULE_IGNORE_UNSPECIFIED) ); return submodule_status_flags_to_rb(flags); }
Copy submodule remote info into submodule repository.
This copies the information about the submodules URL into the checked out submodule config, acting like "git submodule sync"
. This is useful if the URL for the submodule was altered (by a manual change, or a fetch of upstream changes) and the local repository needs to be updated.
static VALUE rb_git_submodule_sync(VALUE self) { git_submodule *submodule; Data_Get_Struct(self, git_submodule, submodule); rugged_exception_check( git_submodule_sync(submodule) ); return self; }
Returns true
if submodule in workdir is not initialized.
static VALUE rb_git_submodule_status_uninitialized(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_UNINITIALIZED) }
Returns true
if the submodule is unmodified.
static VALUE rb_git_submodule_status_unmodified(VALUE self) { RB_GIT_SUBMODULE_STATUS_CHECK(GIT_SUBMODULE_STATUS_IS_UNMODIFIED) }
Returns true
if submodule workdir contains untracked files.
static VALUE rb_git_submodule_status_untracked_files_in_workdir(VALUE self) { RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_UNTRACKED) }
Returns the update rule for a submodule.
There are four update_rule
values:
- :checkout (default)
-
the new commit specified in the superproject will be checked out in the submodule on a detached
HEAD
. - :rebase
-
the current branch of the submodule will be rebased onto the commit specified in the superproject.
- :merge
-
the commit specified in the superproject will be merged into the current branch of the submodule.
- :none
-
the submodule will not be updated
static VALUE rb_git_submodule_update_rule(VALUE self) { git_submodule *submodule; git_submodule_update_t update; Data_Get_Struct(self, git_submodule, submodule); update = git_submodule_update_strategy(submodule); return rb_git_subm_update_rule_fromC(update); }
Returns the URL of the submodule.
static VALUE rb_git_submodule_url(VALUE self) { git_submodule *submodule; const char *url; Data_Get_Struct(self, git_submodule, submodule); url = git_submodule_url(submodule); return url ? rb_str_new_utf8(url) : Qnil; }
Returns the OID for the submodule in the current working directory or nil
of the submodule is not checked out.
This returns the OID that corresponds to looking up HEAD
in the checked out submodule. If there are pending changes in the index or anything else, this won’t notice that. status
can be called for a more complete picture about the state of the working directory.
static VALUE rb_git_submodule_wd_id(VALUE self) { RB_GIT_OID_GETTER(submodule, wd_id); }