I'm using this .gitignore
file for excluding everything in the current dir and subdirs, except the !
prefixed entries:
*
!.profile
!.vim/snippets
!.vimrc
The .profile
and .vimrc
files are showing up as untracked in git status
but not the .vim/snippets
directory. Any idea how to include this directory as well? I've tried !.vim/snippets/
but it doesn't work either. Thanks
I found a solution that works OK. One can explicitly say what dirs and files that should be included along the path:
So this would include the
.vim
dir and thesnippets
directory but only the files (/*
) in thesnippets
dir.