gh repo sync

gh repo sync [<destination-repository>] [flags]

Sync destination repository from source repository. Syncing uses the default branch of the source repository to update the matching branch on the destination repository so they are equal. A fast forward update will be used except when the --forceflag is specified, then the two branches will be synced using a hard reset.

Without an argument, the local repository is selected as the destination repository.

The source repository is the parent of the destination repository by default. This can be overridden with the--sourceflag.

Options

-b, --branch <string>
Branch to sync (default [default branch])
--force
Hard reset the branch of the destination repository to match the source repository
-s, --source <string>
Source repository

Examples

# Sync local repository from remote parent
$gh reposync

# Sync local repository from remote parent on specific branch
$gh reposync--branchv1

# Sync remote fork from its parent
$gh reposyncowner/cli-fork

# Sync remote repository from another remote repository
$gh reposyncowner/repo--sourceowner2/repo2

See also