Git pull: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(6 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=
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: {{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:

Git Rebasing