Git pull: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Git =Overview=")
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Internal=
=Internal=


* [[Git#Commands|Git]]
* [[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