Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

<< was unexpected at this time. flutter

Tags:

flutter

dart

i work on a flutter project but after uploading the file to github and trying to debug the code the terminal this response

<< was unexpected at this time.

i have fork repositorie of flutter maybe this cause the prob

i try to remove the flutter fork in my github but nothing happen i check the FlutterGitUrl in the envirement variable but it was

https://github.com/flutter/flutter.git

i try flutter doctor but same line appear the only command working is dart

like image 467
Yassine Alsmayli Avatar asked Sep 08 '25 03:09

Yassine Alsmayli


2 Answers

I've resolved this error by simply resetting the flutter SDK folder from git command:

  1. Go to folder flutter SDK folder eg: C:\flutter\
  2. Run this command: git reset --hard
  3. Run "flutter doctor" to check for any other errors

This will restore the flutter SDK folder to its original state. No need to reinstall the complete SDK.

like image 107
Roshan Jha Avatar answered Sep 10 '25 04:09

Roshan Jha


I've resolved this error by simply resetting the flutter SDK folder from git command:

  1. Go to folder flutter SDK folder eg: C:\flutter\
  2. Run this command: git reset --hard</c>
  3. Run "flutter doctor" to check for any other errors

This will restore the flutter SDK folder to its original state. No need to reinstall the complete SDK.

like image 41
user46011 Avatar answered Sep 10 '25 03:09

user46011