Was trying to commit some changes. I used git add to add any new javascript files that I may have created using the wildcard *.js. Then I committed cha
git add
*.js
An alternative is to use the find command:
find . -name '*js' -exec git add {} \;
Running that without the exec will give you the list of files that you are working on; so, it is easy to tune this command to your liking.