Architect - Inconsistent model after loading OK version in Git

OK, so the solution to remove untracked files is:

  • Run git clean --dry-run. It just tells you what will be removed. Do it because cleaning is a dangerous command.
  • Run git clean --force to eventually remove your untracked files.