team_mobileforce_gong
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-gong.git
and git pull upstream development --rebase
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.
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 development 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 development
A new Flutter project.
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.