Skip to content
Abhilash G edited this page Dec 5, 2018 · 5 revisions

Welcome to the Melonicious wiki!

This page has everything to help you get started with Melonicious 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/AbhilashG97/Melonicious.git

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

git remote add upstream [email protected]:AbhilashG97/Melonicious.git


Architecture Guidelines

Please view here


Building up the code

Please view here

Clone this wiki locally