How can I select the files that should never be pulled to the repository?
In particular I want this file myBackend/src/main/resources/application.properties to be never synchronized because each user put local settings on top of a template application.properties stored in the develop branch.
Your branch is up-to-date with 'origin/develop'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: README.md
modified: myBackend/docker-compose.yml
modified: myBackend/src/main/resources/application.properties
Untracked files:
(use "git add <file>..." to include in what will be committed)
myBackend/udo systemctl start docker
no changes added to commit (use "git add" and/or "git commit -a")
Also, I have some strange untracked files myBackend/udo systemctl start docker. Indeed this is not the file. It was a command written by mistake udo instead of sudo.
How can I remove it?