Katalon Studio, Version: 6.2.0, Build: 1
Windows 7
The “settings” folder is not being ignored when loading projects to Bitbucket.
I open the project & save the following to .gitignore
I close and open the project and commit to bitbucket
Result: settings & sub folders are still loaded to Bitbucket?
Q: Am I missing something?
/bin/
/Libs/
/.settings/
/.classpath
/.svn/
Reports/
/settings
Thanks to the posting below I solved my problem as follows:
I first updated my .gitignore file:
/bin/
/Libs/
/.settings/
/.classpath
/.svn/
Reports/
settings*
Ran “git rm -r --cached settings” from the command line
**This removed the cached files that were causing the folder to not be removed/ignored
Ran “Commit and Push” from Katalon Studio UI
Result: ‘settings’ folder was deleted from remote repository
The .gitignore for our project is similar to the template provided via .gitignore template for Katalon Studio
Here are the exact contents:
settings/*
.DS_Store
/bin/
/Libs/
/.settings/
/.classpath
.svn/
Reports/
However, when changes are made to files in the above locations (specifically with settings and Reports/), those changes are still pushed to git. This leads to having to fix merge conflicts about timestamps in the settings directory in many of our merges.
Is there something we are mis…