Skip to content

Instantly share code, notes, and snippets.

@kongondo
Forked from hieblmedia/.gitignore
Created October 18, 2020 09:38
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kongondo/b9a1c729b2fbdeca7bd4d326735ecb10 to your computer and use it in GitHub Desktop.
Gitignore - Exclude all except specific subdirectory
#
# If all files excluded and you will include only specific sub-directories
# the parent path must matched before.
#
/**
!/.gitignore
###############################
# Un-ignore the affected subdirectory
!/libraries/
# Ignore subdirectory and all including directories and files to match pattern as valid for the next pattern
/libraries/**
# This pattern only works with the two previous patterns
# (i remember it was working alone on older git versions)
!/libraries/myLibrary/
###############################
# Another example
!/templates/
/templates/**
!/templates/myTemplate/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment