Skip to content

Rudraksha-git/Team_NougatTask_2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Flutter Project Contribution Guide

Welcome to our Flutter Project! We're thrilled to have you here. This guide will walk you through the steps to contribute to our project. Whether you're reporting bugs, suggesting new features, or submitting pull requests, your contributions are valuable.

Table of Contents

Prerequisites

Before you start, make sure you have the following tools installed on your machine:

Fork the Repository

fork this repository

  1. Go to the project's GitHub page.
  2. Click on the Fork button at the top right of the page to create a copy of the repository under your GitHub account.

Clone Your Fork

Clone your forked repository to your local machine:

git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git

clone this repository

copy URL to clipboard

Replace YOUR-USERNAME with your GitHub username and REPOSITORY-NAME with the name of the repository.

Set Upstream Remote

Navigate to your repository’s directory:

cd REPOSITORY-NAME

Add the original repository as a remote named upstream:

git remote add upstream https://github.com/ORIGINAL-OWNER/REPOSITORY-NAME.git

Verify the new remote named upstream:

git remote -v

Create a Branch

Create a new branch for your changes:

git checkout -b feature/your-feature-name

Make Changes

Make your changes to the project using your preferred code editor. Follow the project's coding guidelines and ensure all changes are tested.

Commit Changes

After making your changes, commit them with a descriptive message:

git add .
git commit -m "Add your detailed description of changes"

Push Changes

Push your changes to your forked repository:

git push origin feature/your-feature-name

Create a Pull Request

  1. Go to your forked repository on GitHub.
  2. Click the Compare & pull request button.

create a pull request

submit pull request

  1. Ensure the base repository is the original repository, and the base branch is main (or master).
  2. Add a title and description for your pull request.
  3. Click Create pull request.

Syncing with Upstream

To keep your forked repository up to date with the original repository, you need to sync it regularly:

git fetch upstream
git checkout main
git merge upstream/main

Code of Conduct

Please read our Code of Conduct before contributing to ensure a positive experience for everyone.

Thank you for contributing to our Flutter Project! Your help is appreciated, and we look forward to working with you.

For any questions or further assistance, feel free to open an issue or contact the maintainers.

Happy coding! 🚀

About

Gemini chatbot integration

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 44.0%
  • CMake 35.0%
  • Dart 11.8%
  • Swift 4.2%
  • C 2.5%
  • HTML 2.2%
  • Other 0.3%