Git Cheat Sheet Initial Setup Initialize a repo Create an empty git repo or reinitialize an existing one $ git init
File structure src/fooBar.js src/fooBar.html src/fooBar.scss src/fooBar.... src/fooBar.test.js => npm run test src/fooBar.test.e2e.js (if I have E2E tests - Puppeteer, Playwright...) => npm run test:e2e Tests should not be separated from the source code (think autonomous modules).