VSCode Flutter – stop tracking Flutter repo changes

Issue

I can’t figure out when this started, but suddenly I find my repo tracking all my changes just fine, but…

There’s another repo open – like the entire Flutter source – and my source control is tracking thousands of changes.

Is there some easy way to turn this off? I can’t seem to find it.

TIA

Solution

The solution is to add the path to the flutter repo to the "git.ignoredRepositories" list either in the user or workspace settings.

"git.ignoredRepositories": [
        "/path/to/flutter"
    ]

I had to reload the vscode window for it to take effect.

Answered By – felix-ht

Answer Checked By – Robin (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *