Team-MobileForce-BrainteaserApp
To contribute to this repo:
-
Create a personal fork of the project repo on Github.
-
Clone the fork on your local machine. Your remote repo on Github is called origin.
-
On your local system inside the cloned project, add the original repository as a remote called upstream.
$ git remote add upstream https://github.com/hngi/mobileforce-QuickThink.git
-
Choose a task in the google sheet, comment on the team's Slack thread to have the issue assigned to you.
-
Create a new branch to work on. It is recommended for every new feature you work on make a new branch and work from there. i.e Registration_Feature, Results_Feature
-
Implement/fix your feature, comment your code.
-
Push your branch to your fork on Github, the remote origin.
-
From your fork open a pull request in the correct branch. Target the project's 'Develop_Recover' branch.
-
To keep to update with the main repo, be sure to pull upstream changes into your local repository. This way you don't miss changes
$ git pull upstream Develop_Recover