Im trying to create a new repo of my c# project and i would like to push the Debug folder contents as well but i would like it to load all the files inside apart from the .local-chromium
folder and what's inside it,
nothing more, I took the c # template from the gitignore file and added these lines:
/.local-chromium/
.local-chromium/
.local-chromium
initially I had added only the first line, since it did not work I did other tests but still it does not work.. the only other edit is that i've removed [Dd]ebug/
,
another lines that i've tried are
![Dd]ebug/*
[Dd]ebug/.local-chromium/
but does not work anyway
what am I doing wrong?
EDIT:
folder tree (.local-chromium is the only subfolder inside Debug):
| |
| +---bin
| | \---Debug
| | | files that i want to push,
| | | just an exe and some dlls
| | \---.local-chromium
| | \---Win64-884014
| | \---chrome-win
EDIT: SOLVED. i dont know why but trying to commit the project from console instead of github desktop the role works fine.