pearl-core / pearl

Pearl is a lightweight package manager for automating reproducible environments between different systems (Linux and OSX). It can be used for dotfiles, plugins, programs and any form of code accessible via git.
GNU General Public License v3.0
227 stars 24 forks source link

Improve retro compatibility with old git versions #16

Closed fsquillace closed 4 years ago

fsquillace commented 8 years ago

This command will be accepted by git 1.7: git submodule update --init What we use right now is the following that works only on 1.8+: git submodule update --init --depth 1 --remote

I think that is better to improve retro compatibility and use the old version of it which should still work on newest git version.