Table of Contents

Git - Remote and local Branch management

About

remote and local branch management

Management

Sync origin/master

To synchronize your work, you run:

git fetch origin

It will fetch everything the remote server has that you don’t have yet.

git fetch updates your remote-tracking branches.

This command will:

Merge

To merge this work into your current working branch, you can run

git merge origin/branchName

Documentation / Reference