You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/03-git-branching/sections/remote-branches.asc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ This gives you a local branch that you can work on that starts where `origin/ser
132
132
(((branches, tracking)))(((branches, upstream)))
133
133
Checking out a local branch from a remote-tracking branch automatically creates what is called a ``tracking branch'' (and the branch it tracks is called an ``upstream branch'').
134
134
Tracking branches are local branches that have a direct relationship to a remote branch.
135
-
If you're on a tracking branch and type `git pull`, Git automatically knows which server to fetch from and branch to merge into.
135
+
If you're on a tracking branch and type `git pull`, Git automatically knows which server to fetch from and which branch to merge in.
136
136
137
137
When you clone a repository, it generally automatically creates a `master` branch that tracks `origin/master`.
138
138
However, you can set up other tracking branches if you wish -- ones that track branches on other remotes, or don't track the `master` branch.
0 commit comments