Git in Action #4
To save a snapshot of the codebase we need to add our files to the index. Index is the list of files which will be saved in the next commit. General syntax for adding:
git add <Filename>
For file name we can use wild characters such as *.js
Dot < . ...
simplekit.hashnode.dev1 min read