Class: Rugged::Submodule
- Inherits:
-
Object
- Object
- Rugged::Submodule
- Defined in:
- ext/rugged/rugged_submodule.c
Instance Method Summary collapse
-
#add_to_index([options]) ⇒ Object
Add current submodule
HEAD
commit to the index of superproject. -
#added_to_index? ⇒ Boolean
Returns
true
if submodule is in index, not inHEAD
. -
#added_to_workdir? ⇒ Boolean
Returns
true
if submodule is in workdir, not index. -
#deleted_from_index? ⇒ Boolean
Returns
true
if submodule is inHEAD
, not in index. -
#deleted_from_workdir? ⇒ Boolean
Returns
true
if submodule is in index, not workdir. -
#dirty_workdir? ⇒ Boolean
Returns
true
if the submodule workdir is dirty. -
#dirty_workdir_index? ⇒ Boolean
Returns
true
if submodule workdir index is dirty. -
#fetch_recurse_submodules? ⇒ Boolean
Returns the
fetchRecurseSubmodules
rule for a submodule. -
#finalize_add ⇒ Object
Resolve the setup of a new submodule.
-
#head_oid ⇒ String?
Returns the OID for the submodule in the current
HEAD
tree ornil
if the submodule is not in theHEAD
. -
#ignore_rule ⇒ Object
Returns the ignore rule for a submodule.
-
#in_config? ⇒ Boolean
Returns
true
if superproject.gitmodules
has submodule. -
#in_head? ⇒ Boolean
Returns
true
if superprojectHEAD
contains submodule. -
#in_index? ⇒ Boolean
Returns
true
if superproject index contains submodule. -
#in_workdir? ⇒ Boolean
Returns
true
if superproject workdir has submodule. -
#index_oid ⇒ String?
Returns the OID for the submodule in the index or
nil
if the submodule is not in the index. -
#init([options]) ⇒ Object
Copy submodule info into
.git/config
file. -
#modified_files_in_workdir? ⇒ Boolean
Returns
true
if submodule workdir has modified files. -
#modified_in_index? ⇒ Boolean
Returns
true
if submodule in index andHEAD
don’t match. -
#modified_in_workdir? ⇒ Boolean
Returns
true
if submodule in index and workdirHEAD
don’t match. -
#name ⇒ String
Returns the name of the submodule.
-
#path ⇒ String
Returns the path of the submodule.
-
#reload ⇒ Object
Reread submodule info from config, index, and
HEAD
. -
#repository ⇒ Object
Returns the
repository
for the submodule. -
#status ⇒ Array
Returns an
array
with the status flags for a submodule. -
#sync ⇒ Object
Copy submodule remote info into submodule repository.
-
#uninitialized? ⇒ Boolean
Returns
true
if submodule in workdir is not initialized. -
#unmodified? ⇒ Boolean
Returns
true
if the submodule is unmodified. -
#untracked_files_in_workdir? ⇒ Boolean
Returns
true
if submodule workdir contains untracked files. -
#update_rule ⇒ Object
Returns the update rule for a submodule.
-
#url ⇒ String?
Returns the URL of the submodule.
-
#workdir_oid ⇒ String?
Returns the OID for the submodule in the current working directory or
nil
of the submodule is not checked out.
Instance Method Details
#add_to_index([options]) ⇒ Object
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 call Rugged::Index#write to save the change.
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
# File 'ext/rugged/rugged_submodule.c', line 398
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;
}
|
#added_to_index? ⇒ Boolean
Returns true
if submodule is in index, not in HEAD
.
241 242 243 244 |
# File 'ext/rugged/rugged_submodule.c', line 241
static VALUE rb_git_submodule_status_added_to_index(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_ADDED)
}
|
#added_to_workdir? ⇒ Boolean
Returns true
if submodule is in workdir, not index.
285 286 287 288 |
# File 'ext/rugged/rugged_submodule.c', line 285
static VALUE rb_git_submodule_status_added_to_workdir(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_ADDED)
}
|
#deleted_from_index? ⇒ Boolean
Returns true
if submodule is in HEAD
, not in index
252 253 254 255 |
# File 'ext/rugged/rugged_submodule.c', line 252
static VALUE rb_git_submodule_status_deleted_from_index(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_DELETED)
}
|
#deleted_from_workdir? ⇒ Boolean
Returns true
if submodule is in index, not workdir.
296 297 298 299 |
# File 'ext/rugged/rugged_submodule.c', line 296
static VALUE rb_git_submodule_status_deleted_from_workdir(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_DELETED)
}
|
#dirty_workdir? ⇒ Boolean
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.
380 381 382 383 |
# File 'ext/rugged/rugged_submodule.c', line 380
static VALUE rb_git_submodule_status_dirty_workdir(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_CHECK(GIT_SUBMODULE_STATUS_IS_WD_DIRTY)
}
|
#dirty_workdir_index? ⇒ Boolean
Returns true
if submodule workdir index is dirty.
318 319 320 321 |
# File 'ext/rugged/rugged_submodule.c', line 318
static VALUE rb_git_submodule_status_dirty_workdir_index(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_INDEX_MODIFIED)
}
|
#fetch_recurse_submodules? ⇒ Boolean
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.
625 626 627 628 629 630 631 |
# File 'ext/rugged/rugged_submodule.c', line 625
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;
}
|
#finalize_add ⇒ Object
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).
769 770 771 772 773 774 775 776 777 778 779 |
# File 'ext/rugged/rugged_submodule.c', line 769
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;
}
|
#head_oid ⇒ String?
Returns the OID for the submodule in the current HEAD
tree or nil
if the submodule is not in the HEAD
.
578 579 580 581 |
# File 'ext/rugged/rugged_submodule.c', line 578
static VALUE rb_git_submodule_head_id(VALUE self)
{
RB_GIT_OID_GETTER(submodule, head_id);
}
|
#ignore_rule ⇒ Object
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.
674 675 676 677 678 679 680 681 682 683 |
# File 'ext/rugged/rugged_submodule.c', line 674
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);
}
|
#in_config? ⇒ Boolean
Returns true
if superproject .gitmodules
has submodule.
205 206 207 208 |
# File 'ext/rugged/rugged_submodule.c', line 205
static VALUE rb_git_submodule_status_in_config(VALUE self)
{
RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_CONFIG)
}
|
#in_head? ⇒ Boolean
Returns true
if superproject HEAD
contains submodule.
183 184 185 186 |
# File 'ext/rugged/rugged_submodule.c', line 183
static VALUE rb_git_submodule_status_in_head(VALUE self)
{
RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_HEAD)
}
|
#in_index? ⇒ Boolean
Returns true
if superproject index contains submodule.
194 195 196 197 |
# File 'ext/rugged/rugged_submodule.c', line 194
static VALUE rb_git_submodule_status_in_index(VALUE self)
{
RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_INDEX)
}
|
#in_workdir? ⇒ Boolean
Returns true
if superproject workdir has submodule.
216 217 218 219 |
# File 'ext/rugged/rugged_submodule.c', line 216
static VALUE rb_git_submodule_status_in_workdir(VALUE self)
{
RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_WD)
}
|
#index_oid ⇒ String?
Returns the OID for the submodule in the index or nil
if the submodule is not in the index.
590 591 592 593 |
# File 'ext/rugged/rugged_submodule.c', line 590
static VALUE rb_git_submodule_index_id(VALUE self)
{
RB_GIT_OID_GETTER(submodule, index_id);
}
|
#init([options]) ⇒ Object
Copy submodule info into .git/config
file.
Just like "git submodule init"
, 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 totrue
forces them to be updated.
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 |
# File 'ext/rugged/rugged_submodule.c', line 482
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;
}
|
#modified_files_in_workdir? ⇒ Boolean
Returns true
if submodule workdir has modified files.
329 330 331 332 |
# File 'ext/rugged/rugged_submodule.c', line 329
static VALUE rb_git_submodule_status_modified_files_in_workdir(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_WD_MODIFIED)
}
|
#modified_in_index? ⇒ Boolean
Returns true
if submodule in index and HEAD
don’t match.
263 264 265 266 |
# File 'ext/rugged/rugged_submodule.c', line 263
static VALUE rb_git_submodule_status_modified_in_index(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_MODIFIED)
}
|
#modified_in_workdir? ⇒ Boolean
Returns true
if submodule in index and workdir HEAD
don’t match.
307 308 309 310 |
# File 'ext/rugged/rugged_submodule.c', line 307
static VALUE rb_git_submodule_status_modified_in_workdir(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_MODIFIED)
}
|
#name ⇒ String
Returns the name of the submodule.
512 513 514 515 516 517 518 519 520 521 522 |
# File 'ext/rugged/rugged_submodule.c', line 512
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);
}
|
#path ⇒ String
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.
552 553 554 555 556 557 558 559 560 561 562 |
# File 'ext/rugged/rugged_submodule.c', line 552
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);
}
|
#reload ⇒ Object
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.
431 432 433 434 435 436 437 438 439 440 441 |
# File 'ext/rugged/rugged_submodule.c', line 431
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;
}
|
#repository ⇒ Object
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.
742 743 744 745 746 747 748 749 750 751 752 753 754 |
# File 'ext/rugged/rugged_submodule.c', line 742
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);
}
|
#status ⇒ Array
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
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'ext/rugged/rugged_submodule.c', line 148
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);
}
|
#sync ⇒ Object
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.
454 455 456 457 458 459 460 461 462 463 464 |
# File 'ext/rugged/rugged_submodule.c', line 454
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;
}
|
#uninitialized? ⇒ Boolean
Returns true
if submodule in workdir is not initialized.
274 275 276 277 |
# File 'ext/rugged/rugged_submodule.c', line 274
static VALUE rb_git_submodule_status_uninitialized(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_UNINITIALIZED)
}
|
#unmodified? ⇒ Boolean
Returns true
if the submodule is unmodified.
365 366 367 368 |
# File 'ext/rugged/rugged_submodule.c', line 365
static VALUE rb_git_submodule_status_unmodified(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_CHECK(GIT_SUBMODULE_STATUS_IS_UNMODIFIED)
}
|
#untracked_files_in_workdir? ⇒ Boolean
Returns true
if submodule workdir contains untracked files.
340 341 342 343 |
# File 'ext/rugged/rugged_submodule.c', line 340
static VALUE rb_git_submodule_status_untracked_files_in_workdir(VALUE self)
{
RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_UNTRACKED)
}
|
#update_rule ⇒ Object
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
721 722 723 724 725 726 727 728 729 730 |
# File 'ext/rugged/rugged_submodule.c', line 721
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);
}
|
#url ⇒ String?
Returns the URL of the submodule.
530 531 532 533 534 535 536 537 538 539 540 541 |
# File 'ext/rugged/rugged_submodule.c', line 530
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;
}
|
#workdir_oid ⇒ String?
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.
607 608 609 610 |
# File 'ext/rugged/rugged_submodule.c', line 607
static VALUE rb_git_submodule_wd_id(VALUE self)
{
RB_GIT_OID_GETTER(submodule, wd_id);
}
|