Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions day1/03_Basics/05_Gitignore.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
!SLIDE smbullets
# Exclude files with .gitignore

* Build directories from source code compilation (e.g. `debug`, `release`)
* Build directories from source code compilation (e.g. `debug/`, `release/`)
* Files generated at runtime (e.g. test results or stats)
* Temporary files (e.g. `*.tmp`, `temp/`)
* User specific IDE settings
* Local Vagrant boxes and other temporary files

Example:

cat .gitignore
release/
*.tmp
.idea

Personal ignore patterns can be defined in `.git/info/exclude`

~~~SECTION:handouts~~~

Expand Down