A new Flutter project.
Run the following commands from your terminal:
-
Fork Repositories.
-
Clone to to your local system by using following comand.
git clone https://github.com/<your_user_name>/Expances_Manager.git -
In the project root directory to install all the required dependencies.
flutter pub get
-
Add reference to original repository
git remote add upstream https://github.com/kunal-umap/Expances_Manager.git -
Before making any changes in the repository, always take a pull from the upstream repository to your branch to keep it updated with remote repository.
git pull upstream main -
Create a new branch.
git checkout -b <your_branch_name> -
Make the necessary changes
-
Add your changes/track
git add . -
Commit your changes
git commit -m "Relavent massage" -
Push the commited changes in your branch to your remote repository
git push -u origin <your_branch_name> -
Make a pull request on GitHub
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 development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.