We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6586242 + f4d7bcc commit 94afbbbCopy full SHA for 94afbbb
Documentation/gitfaq.txt
@@ -233,6 +233,14 @@ I asked Git to ignore various files, yet they are still tracked::
233
and add a pattern to `.gitignore` that matches the <file>.
234
See linkgit:gitignore[5] for details.
235
236
+[[fetching-and-pulling]]
237
+How do I know if I want to do a fetch or a pull?::
238
+ A fetch stores a copy of the latest changes from the remote
239
+ repository, without modifying the working tree or current branch.
240
+ You can then at your leisure inspect, merge, rebase on top of, or
241
+ ignore the upstream changes. A pull consists of a fetch followed
242
+ immediately by either a merge or rebase. See linkgit:git-pull[1].
243
+
244
Hooks
245
-----
246
0 commit comments