Skip to content

Instantly share code, notes, and snippets.

@carlosal1015
Forked from chichunchen/.gitignore
Created March 19, 2021 00:30
Show Gist options
  • Save carlosal1015/740b42e99c56b5dfa1a5d2063b7c61af to your computer and use it in GitHub Desktop.
Save carlosal1015/740b42e99c56b5dfa1a5d2063b7c61af to your computer and use it in GitHub Desktop.
Git ignore binary files
# Ignore all
*
# Unignore all with extensions
!*.*
# Unignore all dirs
!*/
### Above combination will ignore all files without extension ###
# Ignore files with extension `.class` & `.sm`
*.class
*.sm
# Ignore `bin` dir
bin/
# or
*/bin/*
# Unignore all `.jar` in `bin` dir
!*/bin/*.jar
# Ignore all `library.jar` in `bin` dir
*/bin/library.jar
# Ignore a file with extension
relative/path/to/dir/filename.extension
# Ignore a file without extension
relative/path/to/dir/anotherfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment