Git pull: Difference between revisions
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
* [[Git_Commands#Remote_Repository_Interaction|Git Commands]] | * [[Git_Commands#Remote_Repository_Interaction|Git Commands]] | ||
* [[git fetch]] | |||
=Overview= | =Overview= | ||
Line 11: | Line 12: | ||
==--rebase== | ==--rebase== | ||
Runs git rebase instead of git merge. | Runs git rebase instead of git merge. For more details see: {{Internal|Git Rebasing|Git Rebasing}} |
Latest revision as of 00:04, 19 February 2020
Internal
Overview
Fetches all remote tracked branches from the remote repository and merges the corresponding remote tracked branch into the current local branch.
Options
--rebase
Runs git rebase instead of git merge. For more details see: