Because I want to handle a lot of projects with there own life cycle: I project to use git submodules.
Each projects/submodules have very a similar contents: then a lot of git objects are identical between submodules. I can see duplications with: find .git/modules/ -type d -name objects | while read D; do (cd "$D"; find . -type f); done | sort | uniq -d -c There is a way to merge submodules object directories ? I think about a mecanism like git clone --shared. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
