This commit is contained in:
https://www.google.com/accounts/o8/id?id=AItOawlqimC5gbxsILaBlnuVXYtfSMDIhiyvHfw 2013-12-08 12:22:53 +00:00 committed by admin
parent 33913a3bbd
commit c2879bed80

View file

@ -0,0 +1,16 @@
Hello all!
I'm doing tests with git annex to see how it works, and to start with it I'm trying to track my /home using some kind of a *white list* with .gitignore.
So I have this .gitignore file:
/*
!/web
!/Desktop
/Desktop/*
!/Desktop/Work
and when I do *git annex add .* it works as expected: It adds only ~/web and ~/Desktop/Work... but when I do *git annex status* it shows me the entire /home... it seems that *git annex status* doesn't use .gitignore... is this a bug or an intended behavior?
Thanks for your time :)