I have a dir project
containing directories .git
, src
, data
and other subdirs. How can I stop sharing data
(i.e. stop including data
in the repository, and letting it appearing in other git repositories), while still sharing src
and other subdirs?
Shall I move data
out of project
?
Thanks.