Every version control system implements a concept to ignore files with a certain file extension to be included. In Git, you add a file named .gitignore to your directory that is to be added to version control. Each line in this file lists a filename, a wildcard expression,
…