Assume you've initialized a project with the following directory structure:
/build
app.js
Then you add everything so you've created so far and commit:
git init
git add .
git commit -m "Initial commit"
Git will only track the file app.js.
Assume you added a build step to your applicat...