.cashe folder in katalon

I am trying to push my changes to the github through source tree and the .cashe files gives error :slight_smile:
cache/Keywords/…__Scripts__ExistUser-Purchasing__with Co-borrower__2-Duplex__001-Two Units__002-Second Home__Without VA__013-Exist-Duplex-Two-Primary-WithoutVA-Just getting started phase purchase without time entry__Script1624356096517
fatal: pathspec β€˜.cache/Keywords/…__Scripts__ExistUser-Purchasing__with Co-borrower__2-Duplex__001-Two Units__002-Second Home__Without VA__013-Exist-Duplex-Two-Primary-WithoutVA-Just getting started phase purchase without time entry__Script1624356096517’ did not match any files


What this file for and what should I do with it ?

Have a look at this:
https://docs.katalon.com/katalon-studio/new/what-is-new-800.html#opening-large-projects-much-faster

Opening large Projects much faster

… we cache the keywords parsing result.

You should not store the .cache in the Git repository at all.

Therefore

change .gitignore file

You should add a line in the .gitignore file in the project directory :

.cache/

remove already committed files out of the repository

Possibly you have already committed some files in the .cache. Changing the .gitignore is not enough. You need to remove them out of the repository. Do the following operation in the command line:

$ cd <your project directory>
$ git rm --cached .cache

You should be able to do equivalent operation in SourceTree but I don’t know.