How can I add an older version of a repository as a submodule to my github repo?
I'd like to use abraham/twitteroauth's older 0.5.0 version, which is compatible with php 5.3.
This just add the last version:
git submodule add <path>
git submodule init
git submodule update
which is not what I need.