Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Git Cheat Sheet

brunomendola edited this page Jun 25, 2012 · 3 revisions

Update your fork from upstream

This is how to keep your personal fork up-to-date with changes from main repository.

$ git remote add upstream https://github.com/AndlyticsProject/andlytics.git

$ git fetch upstream

$ git merge upstream/master

$ git push

Clone this wiki locally