@@ -131,7 +131,7 @@ to point at the new commit.
131131 you have. In such these cases, you do not make a new <<def_merge,merge>>
132132 <<def_commit,commit>> but instead just update to his
133133 revision. This will happen frequently on a
134- <<def_tracking_branch, tracking branch>> of a remote
134+ <<def_remote_tracking_branch,remote- tracking branch>> of a remote
135135 <<def_repository,repository>>.
136136
137137[[def_fetch]]fetch::
@@ -260,7 +260,7 @@ This commit is referred to as a "merge commit", or sometimes just a
260260 The default upstream <<def_repository,repository>>. Most projects have
261261 at least one upstream project which they track. By default
262262 'origin' is used for that purpose. New upstream updates
263- will be fetched into remote <<def_tracking_branch, tracking branches>> named
263+ will be fetched into remote <<def_remote_tracking_branch,remote- tracking branches>> named
264264 origin/name-of-upstream-branch, which you can see using
265265 `git branch -r`.
266266
@@ -349,6 +349,14 @@ This commit is referred to as a "merge commit", or sometimes just a
349349 master branch head as to-upstream branch at $URL". See also
350350 linkgit:git-push[1].
351351
352+ [[def_remote_tracking_branch]]remote-tracking branch::
353+ A regular git <<def_branch,branch>> that is used to follow changes from
354+ another <<def_repository,repository>>. A remote-tracking
355+ branch should not contain direct modifications or have local commits
356+ made to it. A remote-tracking branch can usually be
357+ identified as the right-hand-side <<def_ref,ref>> in a Pull:
358+ <<def_refspec,refspec>>.
359+
352360[[def_repository]]repository::
353361 A collection of <<def_ref,refs>> together with an
354362 <<def_object_database,object database>> containing all objects
@@ -418,14 +426,6 @@ This commit is referred to as a "merge commit", or sometimes just a
418426 that each contain very well defined concepts or small incremental yet
419427 related changes.
420428
421- [[def_tracking_branch]]tracking branch::
422- A regular git <<def_branch,branch>> that is used to follow changes from
423- another <<def_repository,repository>>. A tracking
424- branch should not contain direct modifications or have local commits
425- made to it. A tracking branch can usually be
426- identified as the right-hand-side <<def_ref,ref>> in a Pull:
427- <<def_refspec,refspec>>.
428-
429429[[def_tree]]tree::
430430 Either a <<def_working_tree,working tree>>, or a <<def_tree_object,tree
431431 object>> together with the dependent <<def_blob_object,blob>> and tree objects
0 commit comments