Version Control with Git

Files

.gitignore

A .gitignore file can be used to exclude files from being tracked by git. This is useful for files that are not needed in the repository, such as temporary files, build files, or files that contain sensitive information (like your API keys).

Here is an example .gitignore file:

# Ignore .DS_Store files
.DS_Store

# Ignore .env files
.env

# Ignore .vscode folder
.vscode

# Ignore __pycache__ folder
__pycache__

README.md

A README.md file is a markdown file that is used to describe the project. For

Last updated