I don't want to push my ini file to git repository and i want to read ini file from local machine.
Is it possible?
I don't want to push my ini file to git repository and i want to read ini file from local machine.
Is it possible?
To ignore any file to be added or pushed to remote repository use .gitignore
file.
In your case use create a file named .gitignore
in project directory with,
# .gitignore file
*.ini
on git if you already added or staged the file,
git reset HEAD <path to ini file>
to remove file; dont forget to add .gitignore
to git !