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
Conveying idea that on local repo, pulling by `git pull` will merge in any changes that have happened on the remote side.
Co-authored-by: Ben Straub <[email protected]>
Copy file name to clipboardExpand all lines: book/02-git-basics/sections/remotes.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
@@ -179,7 +179,7 @@ $ git remote show origin
179
179
----
180
180
181
181
It lists the URL for the remote repository as well as the tracking branch information.
182
-
The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge in the `master` branch on the local after it fetches all the remote references.
182
+
The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge the remote's `master` branch into the local one after it has been fetched.
183
183
It also lists all the remote references it has pulled down.
184
184
185
185
That is a simple example you're likely to encounter.
0 commit comments