Architect - Inconsistent model after loading OK version in Git

I tried to use the wizard action Create Lookup Field including entity. After that I tried to delete the artifacts it created and got into troubles. Sure, that is a thin ice.

I thought the solution would be load a previous stable version in Git but that did not help. After I start the Architect again I get this warning:

And I still see the entity created in the Model Browser:

And in the Deployment Script generator:

How can I fully go back to a previous stable version? What else do I need to do beside Git checkout?

git checkout does not delete the files added, it just gets back all the old files. You have to delete all the new files or use additional statements. So this is not an ORIGAM issue but a GIT usage issue.

See for example

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.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.