I have this file. let's say x for this example inside folder y. I want to put a stub in the directory(P.S: I believe this github project does actually what I want to) , but only once. For this example it looks like this:
module.exports.id = "";
module.exports.secret = "";
module.exports.callback = "";
Those values should not be shared, that's why I only want to put the file(stub/empty) inside the repository once.
When I modify x again, changes should not be put in the git repository, but only inside directory y.
I hope I make sense and that this is also not a duplicate question. If that is the case I would love to know the stackoverflow topic which discusses this, so that I can close this topic.