GIT setup
Make sure to have Git installed globally & running on your computer. If you already have installed git on your computer, you can skip this step.
Command | Description |
---|---|
flutter clean | This command deletes build-cache which is in the /build folder. |
git add | - “git add .” stages new files and modifications, without deletions (on the current directory and its subdirectories) - “git add -A” stages all changes - git add -u” stages modifications and deletions, without new files |
git commit -m "your commit changes" | This command will create a commit with the changes you staged using git add and associate the commit message ("Added new feature X") with those changes in the version history of the repository. |
git push | The git push command is used to upload local repository content to a remote repository. Pushing is how you transfer commits from your local repository to a remote repo |