← Back to context

Comment by amanwithnoplan

2 days ago

Please kindly write one for a jj-specific issue: "my build vomitted out a bunch of files and I used any jj command before editing my .gitignore"

I've found myself using git to fix the mess in this particular instance.

    $ jj file untrack {paths-or-pattern}

Alternatively if you have a bunch of files spewed everywhere with no rhyme or reason which can't be globbed or enumerated reasonably:

    $ jj status | grep '^A' | awk '{print $2}' | xargs jj file untrack