Skip to content
Aaditya Menon edited this page Dec 8, 2018 · 4 revisions

Welcome to the Weather wiki!

This page has everything to help you get started with Weather app development.

Configure remotes

When a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:

The easiest way is to use the https URL:

git remote add upstream https://github.com/Sparker0i/Weather.git

or if you have ssh set up you can use that URL instead:

git remote add upstream git@github.Sparker0i/Weather.git

Clone this wiki locally