Home > Software engineering >  file that I removed from github repository keeps showing up in pull requests
file that I removed from github repository keeps showing up in pull requests

Time:11-30

For the longest time, I had two classes of system-generated files that kept showing up in my pull requests:

  • cache files
  • test case properties file

The latter was in .gitignore

It turns out that I had them on the master branch of the repository. I enter image description here

What can I do to make sure that this file is gone for good from any change sets (present or future)?

CodePudding user response:

I was able to solve this with one weird trick...

Per @phd's suggestion...

I just had to change:

"Zoho Katalon Project/settings/internal/com.kms.katalon.composer.testcase.properties"
"Zoho Katalon Project/.cache/**/*"

to:

Zoho\ Katalon Project/settings/internal/com.kms.katalon.composer.testcase.properties
Zoho\ Katalon Project/.cache/**/*

!

  •  Tags:  
  • git
  • Related