Skip to content

Instantly share code, notes, and snippets.

# Git: синхронизация локального репо с удаленным
> http://qaru.site/questions/39175/git-sync-local-repo-with-remote-one
git fetch # This updates 'remote' portion of local repo.
git reset --hard origin/<your-working-branch>
===
# http://qaru.site/questions/39175/git-sync-local-repo-with-remote-one