@@ -469,6 +469,11 @@ The most notable example is `HEAD`.
469
469
<<def_push,push>> to describe the mapping between remote
470
470
<<def_ref,ref>> and local ref.
471
471
472
+ [[def_remote]]remote repository::
473
+ A <<def_repository,repository>> which is used to track the same
474
+ project but resides somewhere else. To communicate with remotes,
475
+ see <<def_fetch,fetch>> or <<def_push,push>>.
476
+
472
477
[[def_remote_tracking_branch]]remote-tracking branch::
473
478
A <<def_ref,ref>> that is used to follow changes from another
474
479
<<def_repository,repository>>. It typically looks like
@@ -515,6 +520,17 @@ The most notable example is `HEAD`.
515
520
is created by giving the `--depth` option to linkgit:git-clone[1], and
516
521
its history can be later deepened with linkgit:git-fetch[1].
517
522
523
+ [[def_submodule]]submodule::
524
+ A <<def_repository,repository>> that holds the history of a
525
+ separate project inside another repository (the latter of
526
+ which is called <<def_superproject, superproject>>).
527
+
528
+ [[def_superproject]]superproject::
529
+ A <<def_repository,repository>> that references repositories
530
+ of other projects in its working tree as <<def_submodule,submodules>>.
531
+ The superproject knows about the names of (but does not hold
532
+ copies of) commit objects of the contained submodules.
533
+
518
534
[[def_symref]]symref::
519
535
Symbolic reference: instead of containing the <<def_SHA1,SHA-1>>
520
536
id itself, it is of the format 'ref: refs/some/thing' and when
0 commit comments