The _________ file in a Git repository lists files and directories that should be ignored.

  • .gitattributes
  • .gitconfig
  • .gitignore
  • .gitkeep
The .gitignore file is used to specify intentionally untracked files that Git should ignore. This can include build artifacts, temporary files, and other files that should not be included in version control.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *