Skip to content

Instantly share code, notes, and snippets.

@maxheadroom
Created July 3, 2013 12:25
Show Gist options
  • Select an option

  • Save maxheadroom/5917481 to your computer and use it in GitHub Desktop.

Select an option

Save maxheadroom/5917481 to your computer and use it in GitHub Desktop.
gitignore challenge
downloader/...
app/design/frontend/zibev/*
errors/...
skin/frontend/zibev/*
media/...
readme.txt
.gitignore
@maxheadroom
Copy link
Author

tried this .gitignore file:

!app/
!app/*
!app/design/*
!app/design/frontend/*

!.gitignore

doesn't work

@maxheadroom
Copy link
Author

this .gitignore seems to work:
*
!app/
!app/design/
!app/design/frontend/
!app/design/frontend/zibev/
!app/design/frontend/zibev/*
!app/design/frontend/zibev//
!app/design/frontend/zibev///*
!app/design/frontend/zibev////
!app/design/frontend/zibev/////*

!skin/
!skin/frontend/
!skin/frontend/zibev/
!skin/frontend/zibev/*
!skin/frontend/zibev//
!skin/frontend/zibev///*

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment