There is a Projects folder structure:
│ .babelrc │ .configs │ .gitignore │ server.js │ └───src ├───Build │ bundle.js │ ├───Scripts │ scripts.js │ └───Styles style.css If you initialize git in the root folder (Projects), then the src folder is uploaded to the repository, and there it is not needed just to understand its contents. Is it possible to do this so git would work with the src folder as the root? The solution would be to initialize git in the src folder itself, but I want to separate all the configuration files from the code. Is it possible to realize this?