top | item 42732793 (no title) amanwithnoplan | 1 year 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. discuss order hn newest stouset|1 year ago $ 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
stouset|1 year ago $ 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
stouset|1 year ago